1
0
mirror of https://github.com/StackExchange/dnscontrol.git synced 2024-05-11 05:55:12 +00:00

gofmt -s -w

This commit is contained in:
Tom Limoncelli
2022-08-14 20:49:57 -04:00
parent ccb582b278
commit 1010138fb6
13 changed files with 135 additions and 112 deletions

View File

@@ -73,9 +73,10 @@ func (z *genYamlData) genInterfaceList(w io.Writer) yaml.MapSlice {
// It may have a single (simple) or multiple (many) values.
// Used to generate:
// label:
// type: A
// value: 1.2.3.4
//
// label:
// type: A
// value: 1.2.3.4
type simple struct {
TTL uint32 `yaml:"ttl,omitempty"`
Type string `yaml:"type"`
@@ -83,11 +84,12 @@ type simple struct {
}
// Used to generate:
// label:
// type: A
// values:
// - 1.2.3.4
// - 2.3.4.5
//
// label:
// type: A
// values:
// - 1.2.3.4
// - 2.3.4.5
type many struct {
TTL uint32 `yaml:"ttl,omitempty"`
Type string `yaml:"type"`
@@ -102,17 +104,18 @@ type complexItems []interface{}
// 'thing': >> complexVals
// - type: CNAME
// value: newplace.example.com. << value
//
// 'www':
// - type: A
// values:
// - 1.2.3.4 << values
// - 1.2.3.5 << values
// - 1.2.3.4 << values
// - 1.2.3.5 << values
// - type: MX
// values:
// - priority: 10 << fields
// value: mx1.example.com. << fields
// - priority: 10 << fields
// value: mx2.example.com. << fields
// - priority: 10 << fields
// value: mx1.example.com. << fields
// - priority: 10 << fields
// value: mx2.example.com. << fields
type complexVals struct {
TTL uint32 `yaml:"ttl,omitempty"`
Type string `yaml:"type"`