3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-10 04:25:01 +00:00

fix: missing file

This commit is contained in:
Dragory 2021-10-27 00:16:43 +03:00
parent 8f17a835f9
commit b3516cabaa
No known key found for this signature in database
GPG key ID: 5F387BA66DF8AAC1

11
backend/src/profiler.ts Normal file
View file

@ -0,0 +1,11 @@
import { Profiler } from "knub/dist/Profiler";
let profiler: Profiler | null = null;
export function getProfiler() {
return profiler;
}
export function setProfiler(_profiler: Profiler) {
profiler = _profiler;
}