github.com/khulnasoft-lab/defsec@v1.0.5-0.20230827010352-5e9f46893d95/pkg/providers/nifcloud/dns/record.go (about)

     1  package dns
     2  
     3  import (
     4  	defsecTypes "github.com/khulnasoft-lab/defsec/pkg/types"
     5  )
     6  
     7  const ZoneRegistrationAuthTxt = "nifty-dns-verify="
     8  
     9  type Record struct {
    10  	Metadata defsecTypes.Metadata
    11  	Type     defsecTypes.StringValue
    12  	Record   defsecTypes.StringValue
    13  }