3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-24 18:15:02 +00:00

fix: missing file

This commit is contained in:
Dragory 2021-10-27 00:16:43 +03:00
parent 0b594d461d
commit 1b5d9bbc8e

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;
}