dnscontrol/pkg/rejectif/label.go
2023-05-20 13:21:45 -04:00

19 lines
362 B
Go

package rejectif
import (
"fmt"
"github.com/StackExchange/dnscontrol/v4/models"
)
// Keep these in alphabetical order.
// LabelNotApex detects use not at apex. Use this when a record type
// is only permitted at the apex.
func LabelNotApex(rc *models.RecordConfig) error {
if rc.GetLabel() != "@" {
return fmt.Errorf("use not at apex")
}
return nil
}