wheat-cache/pkg/middle-msg/logx.go

15 lines
159 B
Go
Raw Normal View History

2021-10-05 21:36:57 +08:00
package middle_msg
import "time"
2021-10-06 14:47:58 +08:00
var (
EventNameLog = "logcontext"
2021-10-06 14:47:58 +08:00
)
2021-10-05 21:36:57 +08:00
type LogContext struct {
Level string
Data time.Time
Msg string
Route string
}