mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-16 14:11:50 +00:00
11 lines
218 B
TypeScript
11 lines
218 B
TypeScript
import { Profiler } from "knub/dist/Profiler";
|
|
|
|
let profiler: Profiler | null = null;
|
|
|
|
export function getProfiler() {
|
|
return profiler;
|
|
}
|
|
|
|
export function setProfiler(_profiler: Profiler) {
|
|
profiler = _profiler;
|
|
}
|