(w http.ResponseWriter, r *http.Request, key string, value string)
| 12 | |
| 13 | type Persister interface { |
| 14 | Set(w http.ResponseWriter, r *http.Request, key string, value string) error |
| 15 | Get(r *http.Request, key string) (string, error) |
| 16 | Delete(w http.ResponseWriter, r *http.Request, key string) error |
| 17 | Clear(w http.ResponseWriter, r *http.Request) error |
no outgoing calls