mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-01-11 09:59:59 +08:00
19 lines
362 B
Go
19 lines
362 B
Go
|
package rejectif
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/StackExchange/dnscontrol/v3/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
|
||
|
}
|