This commit is contained in:
2024-10-23 22:47:37 +08:00
parent e46e16f8c9
commit ac45ad5b44
9 changed files with 907 additions and 149 deletions

7
logger/log.go Normal file
View File

@@ -0,0 +1,7 @@
package logger
type Logger interface {
Print(v ...interface{})
Println(v ...interface{})
Printf(format string, v ...interface{})
}