Basic service boilerplate for settings bundles

This commit is contained in:
Benedikt Kulmann
2020-04-16 10:07:45 +02:00
parent a8af03c338
commit 5b89729d1e
18 changed files with 1006 additions and 141 deletions
+6
View File
@@ -31,9 +31,15 @@ type Tracing struct {
Service string
}
// Storage defines the available storage configuration.
type Storage struct {
RootMountPath string
}
// Config combines all available configuration parts.
type Config struct {
File string
Storage Storage
Log Log
Debug Debug
HTTP HTTP