Timo Hocker c7708f4bc0
All checks were successful
continuous-integration/drone/push Build is passing
fix
2022-01-05 12:35:18 +01:00

9 lines
208 B
TypeScript

import build_debug from 'debug';
function debug (scope: string): build_debug.Debugger {
const namespace = `sapphirecode:auth-server-helper:${scope}`;
return build_debug (namespace);
}
export { debug };