2eba8d6511
Signed-off-by: Evan Hazlett <ejhazlett@gmail.com>
15 lines
249 B
Go
15 lines
249 B
Go
package config
|
|
|
|
// Config is the top level application configuration
|
|
type Config struct {
|
|
ListenAddr string
|
|
GRPCAddr string
|
|
SocketPath string
|
|
Runtime *Runtime
|
|
Datastore string
|
|
}
|
|
|
|
type Runtime struct {
|
|
Name string
|
|
Config interface{}
|
|
}
|