lens @ 1ae70dbd9124675d4a510954619b01edd5f1f6c3

 1package repository
 2
 3import "context"
 4
 5type (
 6	Settings struct {
 7		ShowMode  bool
 8		ShowOwner bool
 9	}
10
11	SettingsRepository interface {
12		Save(context.Context, *Settings) error
13		Load(context.Context) (*Settings, error)
14	}
15)