(ctx context.Context, config *Config)
| 78 | } |
| 79 | |
| 80 | func (s *Store) Add(ctx context.Context, config *Config) error { |
| 81 | return s.store.Insert(ctx, config) |
| 82 | } |
| 83 | |
| 84 | func (s *Store) Rename(ctx context.Context, id ksuid.KSUID, newName string) error { |
| 85 | config, err := s.LookupByID(ctx, id) |
no test coverage detected