14 lines
228 B
Go
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
|
|
}
|