13 lines
274 B
Go
13 lines
274 B
Go
package settings
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/SamuelTariku/FortuneBet-Backend/internal/domain"
|
|
)
|
|
|
|
type SettingStore interface {
|
|
GetSettings(ctx context.Context) ([]domain.Setting, error)
|
|
SaveSetting(ctx context.Context, key, value string) (domain.Setting, error)
|
|
}
|