mirror of
https://github.com/Icinga/icingabeat.git
synced 2025-08-16 07:18:08 +02:00
16 lines
175 B
Go
16 lines
175 B
Go
package api
|
|
|
|
type Config struct {
|
|
Enabled bool
|
|
Host string
|
|
Port int
|
|
}
|
|
|
|
var (
|
|
DefaultConfig = Config{
|
|
Enabled: false,
|
|
Host: "localhost",
|
|
Port: 5066,
|
|
}
|
|
)
|