(ctx context.Context, name string)
| 17 | |
| 18 | type ISettingStore interface { |
| 19 | Get(ctx context.Context, name string) (*Setting, error) |
| 20 | Set(ctx context.Context, name string, value string, operator string) error |
| 21 | All(ctx context.Context) ([]*Setting, error) |
| 22 | } |
no outgoing calls
no test coverage detected