diff --git a/src/handler/logger.ts b/src/handler/logger.ts new file mode 100644 index 0000000..f90be9d --- /dev/null +++ b/src/handler/logger.ts @@ -0,0 +1,16 @@ + + + +enum sEvent { + GLOBAL_SLASH, + LOCAL_SLASH, + TEXT_CMD, + CRASH, +} + +class Logger { + + public log(e : T, message: string) { + console.log(`[${"ISOSTRING (todo) "}][${sEvent[e]}] :: ${message}`) + } +} \ No newline at end of file diff --git a/src/index.ts b/src/index.ts index 78e789f..3a77436 100644 --- a/src/index.ts +++ b/src/index.ts @@ -4,3 +4,8 @@ import * as Types from './types/handler'; module.exports = { Sern, Utils, Types }; export { Sern, Utils, Types }; + + +function t () { + +} \ No newline at end of file