package cfg import ( "path" "go.stargrave.org/godlighty" ) func newTLSCfg(host string) *godlighty.TLSCfg { return &godlighty.TLSCfg{ Cert: path.Join(Etc, host+".pem"), Key: path.Join(Etc, host+".pem"), CACert: CACert, } }