zrok/endpoints/privateFrontend/config.go
2023-01-10 16:38:53 -05:00

18 lines
349 B
Go

package privateFrontend
import "github.com/openziti-test-kitchen/zrok/endpoints"
type Config struct {
IdentityName string
ShrToken string
Address string
RequestsChan chan *endpoints.BackendRequest
}
func DefaultConfig(identityName string) *Config {
return &Config{
IdentityName: identityName,
Address: "0.0.0.0:8080",
}
}