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

15 lines
161 B
Go
Raw Normal View History

package middlemsg
2021-10-05 21:36:57 +08:00
import "time"
2021-10-06 14:47:58 +08:00
var (
2021-10-19 15:17:43 +08:00
LogContextName = "log-context"
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
}