1
0
mirror of https://github.com/Chipazawra/v8-1c-cluster-pde.git synced 2025-04-27 12:32:24 +02:00

10 lines
249 B
Go
Raw Normal View History

2021-12-27 21:15:39 +03:00
package app
type Config struct {
2021-12-28 14:23:42 +03:00
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"`
2021-12-27 21:15:39 +03:00
}