11 lines
344 B
Go
11 lines
344 B
Go
package Meta
|
|
|
|
// The type which matches the configuration file:
|
|
type Configuration struct {
|
|
ConfigDBHostname string
|
|
ConfigDBDatabase string
|
|
ConfigDBConfigurationCollection string
|
|
ConfigDBConfigurationCollectionUsername string
|
|
ConfigDBConfigurationCollectionPassword string
|
|
}
|