lens @ 049b9acbd9635c206f5eeb01074b5d63803c4cd5

 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)