7 lines
194 B
Go
7 lines
194 B
Go
package config
|
|
|
|
type LoginConfig struct {
|
|
Username string `mapstructure:"username" json:"username" yaml:"username"`
|
|
Password string `mapstructure:"password" json:"password" yaml:"password"`
|
|
}
|