8 lines
246 B
Go
8 lines
246 B
Go
package config
|
|
|
|
//go:generate -command roleconfig go run git.wzray.com/homelab/hivemind/internal/codegen/roleconfig
|
|
//go:generate roleconfig -name DnsConfig
|
|
type DnsConfig struct {
|
|
UseSystemd bool `toml:"use_systemd" gen:"no"`
|
|
baseRoleConfig
|
|
}
|