3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-03-16 14:11:50 +00:00
zeppelin/backend/src/profiler.ts

12 lines
218 B
TypeScript
Raw Normal View History

2021-10-27 00:16:43 +03:00
import { Profiler } from "knub/dist/Profiler";
let profiler: Profiler | null = null;
export function getProfiler() {
return profiler;
}
export function setProfiler(_profiler: Profiler) {
profiler = _profiler;
}