1
0
mirror of https://github.com/Chipazawra/v8-1c-cluster-pde.git synced 2025-04-13 11:50:40 +02:00

10 lines
253 B
Go
Raw Normal View History

2021-12-27 21:15:39 +03:00
package app
type Config struct {
2021-12-28 23:06:33 +03:00
Host string `env:"RAS_HOST" envDefault:"localhost"`
Port string `env:"RAS_PORT" envDefault:"1545"`
User string `env:"CLS_USER"`
Pass string `env:"CLS_PASS"`
2021-12-28 14:23:42 +03:00
Expose string `env:"EXPOSE" envDefault:"9096"`
2021-12-27 21:15:39 +03:00
}