mirror of
https://github.com/openziti/zrok.git
synced 2024-11-22 16:13:47 +01:00
12 lines
173 B
Go
12 lines
173 B
Go
package agent
|
|
|
|
type AgentConfig struct {
|
|
ConsoleEndpoint string
|
|
}
|
|
|
|
func DefaultAgentConfig() *AgentConfig {
|
|
return &AgentConfig{
|
|
ConsoleEndpoint: "127.0.0.1:8888",
|
|
}
|
|
}
|