12 lines
173 B
Go
12 lines
173 B
Go
package core
|
|
|
|
type Configuration struct {
|
|
TcpCollectorPort string
|
|
SerialCollectorPort string
|
|
HttpPort string
|
|
}
|
|
|
|
func LoadConfigYaml() error {
|
|
return nil
|
|
}
|