mirror of
https://code.forgejo.org/forgejo/runner.git
synced 2024-11-24 13:49:08 +03:00
4eb5213294
Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
18 lines
381 B
Go
18 lines
381 B
Go
package cmd
|
|
|
|
import "github.com/kelseyhightower/envconfig"
|
|
|
|
type (
|
|
// Config provides the system configuration.
|
|
Config struct {
|
|
Debug bool `envconfig:"GITEA_DEBUG"`
|
|
Trace bool `envconfig:"GITEA_TRACE"`
|
|
}
|
|
)
|
|
|
|
// fromEnviron returns the settings from the environment.
|
|
func fromEnviron() (Config, error) {
|
|
cfg := Config{}
|
|
err := envconfig.Process("", &cfg)
|
|
return cfg, err
|
|
}
|