element/config/config.go
Evan Hazlett 1dd748e3f2
wip: service registration
Signed-off-by: Evan Hazlett <ejhazlett@gmail.com>
2017-07-30 04:13:44 -04:00

13 lines
199 B
Go

package config
// Config is the top level configuration
type Config struct {
ListenAddr string
SocketPath string
Runtime *Runtime
}
type Runtime struct {
Name string
Config interface{}
}