mirror of
https://github.com/openziti/zrok.git
synced 2024-11-23 08:33:52 +01:00
15 lines
246 B
Go
15 lines
246 B
Go
package privateFrontend
|
|
|
|
type Config struct {
|
|
IdentityName string
|
|
SvcToken string
|
|
Address string
|
|
}
|
|
|
|
func DefaultConfig(identityName string) *Config {
|
|
return &Config{
|
|
IdentityName: identityName,
|
|
Address: "0.0.0.0:8080",
|
|
}
|
|
}
|