Move and refactor files and some more changes :3

This commit is contained in:
bytedream 2022-06-30 16:08:08 +02:00
parent 781e520591
commit 303689ecbb
29 changed files with 1305 additions and 1160 deletions

12
utils/logger.go Normal file
View file

@ -0,0 +1,12 @@
package utils
type Logger interface {
IsDev() bool
Debug(format string, v ...any)
Info(format string, v ...any)
Warn(format string, v ...any)
Err(format string, v ...any)
Empty()
SetProcess(format string, v ...any)
StopProcess(format string, v ...any)
}