This repository has been archived on 2026-07-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GoEdgeAPI/internal/db/models/notify_levels.go
T
2020-07-22 22:17:53 +08:00

12 lines
171 B
Go

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