mirror of
https://github.com/dstotijn/hetty.git
synced 2025-07-01 18:47:29 -04:00
9 lines
229 B
Go
9 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
|
|
}
|