logman/config.go

13 lines
141 B
Go
Raw Normal View History

2019-08-13 09:48:47 -05:00
package main
type Configuration struct {
Username string
Password string
Port int
Hosts []string
}
func initializeConfig() {
}