feat: refactor.

This commit is contained in:
tx7do
2024-05-06 10:26:59 +08:00
parent 7ce746e181
commit 72daf43151
13 changed files with 100 additions and 81 deletions

12
logger/options.go Normal file
View File

@@ -0,0 +1,12 @@
package logger
type Type string
const (
Std Type = "std"
Fluent Type = "fluent"
Logrus Type = "logrus"
Zap Type = "zap"
Aliyun Type = "aliyun"
Tencent Type = "tencent"
)