You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
365 B
26 lines
365 B
package config
|
|
|
|
type EnvConfig struct {
|
|
Log LogEntity
|
|
Command string
|
|
MoveData MoveDataEntity
|
|
Mysql MysqlEntity
|
|
}
|
|
|
|
type LogEntity struct {
|
|
LogEnv string
|
|
LogPath string
|
|
}
|
|
|
|
type MoveDataEntity struct {
|
|
Table string
|
|
DBPath string
|
|
XlsxPath string
|
|
}
|
|
|
|
type MysqlEntity struct {
|
|
Host string
|
|
User string
|
|
Password string
|
|
Database string
|
|
}
|
|
|