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