homebox/backend/internal/config/conf_seed.go

15 lines
339 B
Go
Raw Normal View History

2022-08-30 02:30:36 +00:00
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"`
2022-08-30 18:05:11 +00:00
Group string `yaml:"group"`
2022-08-30 02:30:36 +00:00
}