mirror of
https://github.com/dstotijn/hetty
synced 2024-11-14 16:07:10 +00:00
8 lines
229 B
Go
8 lines
229 B
Go
package scope
|
|
|
|
import "context"
|
|
|
|
type Repository interface {
|
|
UpsertSettings(ctx context.Context, module string, settings interface{}) error
|
|
FindSettingsByModule(ctx context.Context, module string, settings interface{}) error
|
|
}
|