mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2024-11-14 12:15:06 +08:00
18 lines
362 B
Go
18 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
|
|
}
|