mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-01-16 12:28:06 +08:00
10 lines
191 B
Go
10 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
|
||
|
}
|