main
1package log
2
3import (
4 "net/http"
5
6 "github.com/xlgmokha/x/pkg/mapper"
7)
8
9func init() {
10 mapper.Register[*http.Request, Fields](func(r *http.Request) Fields {
11 return Fields{
12 "host": r.URL.Host,
13 "method": r.Method,
14 "path": r.URL.Path,
15 "remote_host": r.RemoteAddr,
16 }
17 })
18}