Files
waf-platform/EdgeAPI/internal/db/models/notify_levels.go
2026-02-04 20:27:13 +08:00

13 lines
197 B
Go

package models
const (
LevelDebug = "debug"
LevelInfo = "info"
LevelWarning = "warning"
LevelError = "error"
LevelSuccess = "success"
LogTypeAdmin = "admin"
LogTypeUser = "user"
)