30 lines
623 B
Go
30 lines
623 B
Go
package config
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/owncloud/ocis/ocis-pkg/shared"
|
|
)
|
|
|
|
// Config combines all available configuration parts.
|
|
type Config struct {
|
|
*shared.Commons `yaml:"-"`
|
|
|
|
Service Service `yaml:"-"`
|
|
|
|
Log *Log `yaml:"log"`
|
|
Debug Debug `yaml:"debug"`
|
|
|
|
Nats Nats `ociConfig:"nats"`
|
|
|
|
Context context.Context `yaml:"-"`
|
|
}
|
|
|
|
// Nats is the nats config
|
|
type Nats struct {
|
|
Host string `yaml:"host" env:"NATS_NATS_HOST"`
|
|
Port int `yaml:"port" env:"NATS_NATS_PORT"`
|
|
ClusterID string `yaml:"clusterid" env:"NATS_NATS_CLUSTER_ID"`
|
|
StoreDir string `yaml:"store_dir" env:"NATS_NATS_STORE_DIR"`
|
|
}
|