mirror of
https://github.com/Chipazawra/v8-1c-cluster-pde.git
synced 2025-03-25 21:29:00 +02:00
9 lines
193 B
Go
9 lines
193 B
Go
package app
|
|
|
|
type Config struct {
|
|
Host string `env:"HOST_1C" envDefault:"localhost"`
|
|
Port string `env:"PORT_1C" envDefault:"1545"`
|
|
User string `env:"USER_1C"`
|
|
Pass string `env:"PASS_1C"`
|
|
}
|