zrok/agent/config.go

16 lines
267 B
Go
Raw Normal View History

package agent
type AgentConfig struct {
2024-11-06 23:18:20 +01:00
ConsoleAddress string
ConsoleStartPort uint16
ConsoleEndPort uint16
}
2024-11-06 23:18:20 +01:00
func DefaultConfig() *AgentConfig {
return &AgentConfig{
2024-11-06 23:18:20 +01:00
ConsoleAddress: "127.0.0.1",
ConsoleStartPort: 8080,
ConsoleEndPort: 8181,
}
}