mirror of
https://github.com/openziti/zrok.git
synced 2024-11-26 10:04:16 +01:00
18 lines
342 B
Go
18 lines
342 B
Go
package privateFrontend
|
|
|
|
import "github.com/openziti-test-kitchen/zrok/endpoints"
|
|
|
|
type Config struct {
|
|
IdentityName string
|
|
ShrToken string
|
|
Address string
|
|
RequestsChan chan *endpoints.Request
|
|
}
|
|
|
|
func DefaultConfig(identityName string) *Config {
|
|
return &Config{
|
|
IdentityName: identityName,
|
|
Address: "0.0.0.0:8080",
|
|
}
|
|
}
|