8 lines
118 B
Go
8 lines
118 B
Go
|
package config
|
||
|
|
||
|
type SystemInfo struct {
|
||
|
DefaultUser struct {
|
||
|
Name string `yaml:"name"`
|
||
|
} `yaml:"default_user"`
|
||
|
}
|