8 lines
110 B
Go
8 lines
110 B
Go
|
package model
|
||
|
|
||
|
type SettingsContextKey struct{}
|
||
|
|
||
|
type Settings struct {
|
||
|
LightMode bool `json:"light_mode"`
|
||
|
}
|