Demo Bot: WIP.

This commit is contained in:
John Livingston
2021-12-07 18:57:08 +01:00
parent 978ee83eee
commit 0e45f9a197
8 changed files with 410 additions and 66 deletions

23
bots/lib/logger.ts Normal file
View File

@ -0,0 +1,23 @@
class Logger {
public debug (s: string): void {
console.log(s)
}
public info (s: string): void {
console.info(s)
}
public warn (s: string): void {
console.warn(s)
}
public error (s: string): void {
console.error(s)
}
}
const logger = new Logger()
export {
logger
}