(context.Context, string)
| 13 | type Store interface { |
| 14 | Save(context.Context, string, []byte, time.Duration) error |
| 15 | Load(context.Context, string) ([]byte, error) |
| 16 | Clear(context.Context, string) error |
| 17 | Lock(key string) sessions.Lock |
| 18 | VerifyConnection(context.Context) error |
no outgoing calls