- Add configurable pool_domain with pool.ntp.org default - Update Go from 1.23.5 to 1.24.0 - Update golang.org/x/* dependencies - Add enumer and accessory as tool dependencies - Update goreleaser to v2.12.3
39 lines
535 B
Go
39 lines
535 B
Go
// Code generated by accessory; DO NOT EDIT.
|
|
|
|
package config
|
|
|
|
func (c *Config) DeploymentMode() string {
|
|
if c == nil {
|
|
return ""
|
|
}
|
|
return c.deploymentMode
|
|
}
|
|
|
|
func (c *Config) ManageHostname() string {
|
|
if c == nil {
|
|
return ""
|
|
}
|
|
return c.manageHostname
|
|
}
|
|
|
|
func (c *Config) WebHostname() string {
|
|
if c == nil {
|
|
return ""
|
|
}
|
|
return c.webHostname
|
|
}
|
|
|
|
func (c *Config) PoolDomain() string {
|
|
if c == nil {
|
|
return ""
|
|
}
|
|
return c.poolDomain
|
|
}
|
|
|
|
func (c *Config) Valid() bool {
|
|
if c == nil {
|
|
return false
|
|
}
|
|
return c.valid
|
|
}
|