(ctx context.Context, table, clientID, value string)
| 5 | type NopBackend struct{} |
| 6 | |
| 7 | func (*NopBackend) Set(ctx context.Context, table, clientID, value string) error { |
| 8 | return nil |
| 9 | } |
| 10 | |
| 11 | func (*NopBackend) Get(ctx context.Context, table, clientID string) (string, error) { |
| 12 | return "", nil |
no outgoing calls