mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-03 15:00:27 +08:00
13 lines
197 B
Go
13 lines
197 B
Go
package models
|
|
|
|
const (
|
|
LevelDebug = "debug"
|
|
LevelInfo = "info"
|
|
LevelWarning = "warning"
|
|
LevelError = "error"
|
|
LevelSuccess = "success"
|
|
|
|
LogTypeAdmin = "admin"
|
|
LogTypeUser = "user"
|
|
)
|