esxlib/service/config.go

17 lines
193 B
Go
Raw Permalink Normal View History

2023-06-24 19:57:08 +00:00
package service
import (
"esxlib/esx"
)
type Config struct {
ListenAddress string
Token string
TLS struct {
KeyPath string
CertPath string
}
Zones map[string]esx.Config
}