1
0
Fork 0
hivemind/internal/config/dns.go
2026-01-18 19:38:54 +03:00

20 lines
297 B
Go

package config
type DnsConfig struct {
UseSystemd bool `toml:"use_systemd"`
baseRoleConfig
}
func (c DnsConfig) Validate() error {
return nil
}
func (c *DnsConfig) Merge(other DnsConfig) {
if other.set {
c.set = other.set
}
if other.UseSystemd {
c.UseSystemd = other.UseSystemd
}
}