Files
2026-02-03 10:05:53 +08:00

8 lines
89 B
Go

package middleware
type Logger struct{}
func NewLogger() *Logger {
return &Logger{}
}