func(http.Handler) http.Handler
| 8 | const cookieKey = "gocity_api" |
| 9 | |
| 10 | type Middleware func(http.Handler) http.Handler |
| 11 | |
| 12 | func setAPICookie(w http.ResponseWriter, url string) { |
| 13 | expire := time.Now().Add(24 * time.Hour) |
nothing calls this directly
no outgoing calls
no test coverage detected