gyrogpsc/core/config.go
2020-12-11 01:18:05 +01:00

14 lines
228 B
Go

package core
type Configuration struct {
TcpCollectorPort string
SerialCollectorPort string
HttpPort string
publishIntervalMs int
syncUpdateIntervalMs int
}
func LoadConfigYaml() error {
return nil
}