mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2024-11-10 09:12:47 +08:00
9 lines
191 B
Go
9 lines
191 B
Go
package models
|
|
|
|
func MakeUnknown(rc *RecordConfig, rtype string, contents string, origin string) error {
|
|
rc.Type = "UNKNOWN"
|
|
rc.UnknownTypeName = rtype
|
|
rc.target = contents
|
|
|
|
return nil
|
|
}
|