mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-17 06:08:42 +00:00
14 lines
304 B
Go
14 lines
304 B
Go
|
package config
|
||
|
|
||
|
type SeedUser struct {
|
||
|
Name string `yaml:"name"`
|
||
|
Email string `yaml:"email"`
|
||
|
Password string `yaml:"password"`
|
||
|
IsSuperuser bool `yaml:"isSuperuser"`
|
||
|
}
|
||
|
|
||
|
type Seed struct {
|
||
|
Enabled bool `yaml:"enabled" conf:"default:false"`
|
||
|
Users []SeedUser `yaml:"users"`
|
||
|
}
|