1
1
mirror of https://github.com/openziti/zrok.git synced 2025-03-22 19:37:34 +01:00
zrok/controller/env/cf.go

15 lines
186 B
Go
Raw Normal View History

package env
import (
"github.com/michaelquigley/cf"
)
var cfOpts *cf.Options
func GetCfOptions() *cf.Options {
if cfOpts == nil {
cfOpts = cf.DefaultOptions()
}
return cfOpts
}