2017-07-29 14:11:50 +00:00
|
|
|
package config
|
|
|
|
|
2017-08-14 12:39:37 +00:00
|
|
|
// Config is the top level application configuration
|
2017-07-29 14:11:50 +00:00
|
|
|
type Config struct {
|
2017-07-30 02:54:43 +00:00
|
|
|
ListenAddr string
|
2017-08-14 12:39:37 +00:00
|
|
|
GRPCAddr string
|
2017-07-30 02:54:43 +00:00
|
|
|
SocketPath string
|
2017-07-30 08:13:44 +00:00
|
|
|
Runtime *Runtime
|
2017-08-14 12:39:37 +00:00
|
|
|
Datastore string
|
2017-07-30 08:13:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type Runtime struct {
|
|
|
|
Name string
|
|
|
|
Config interface{}
|
2017-07-29 14:11:50 +00:00
|
|
|
}
|