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 } type MysqlEntity struct { Host string User string Password string Database string }