2024-04-07 11:08:05 +08:00

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"`
}