mirror of
https://github.com/Chipazawra/v8-1c-cluster-pde.git
synced 2025-04-11 11:42:19 +02:00
10 lines
253 B
Go
10 lines
253 B
Go
package app
|
|
|
|
type Config struct {
|
|
Host string `env:"RAS_HOST" envDefault:"localhost"`
|
|
Port string `env:"RAS_PORT" envDefault:"1545"`
|
|
User string `env:"CLS_USER"`
|
|
Pass string `env:"CLS_PASS"`
|
|
Expose string `env:"EXPOSE" envDefault:"9096"`
|
|
}
|