mirror of
https://github.com/Chipazawra/v8-1c-cluster-pde.git
synced 2025-03-19 21:07:45 +02:00
10 lines
249 B
Go
10 lines
249 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"`
|
|
Expose string `env:"EXPOSE" envDefault:"9096"`
|
|
}
|