mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-15 17:40:25 +08:00
18 lines
348 B
Go
18 lines
348 B
Go
|
|
package dnsclients
|
||
|
|
|
||
|
|
type RecordType = string
|
||
|
|
|
||
|
|
const (
|
||
|
|
RecordTypeA RecordType = "A"
|
||
|
|
RecordTypeCName RecordType = "CNAME"
|
||
|
|
RecordTypeText RecordType = "TXT"
|
||
|
|
)
|
||
|
|
|
||
|
|
type Record struct {
|
||
|
|
Id string `json:"id"`
|
||
|
|
Name string `json:"name"`
|
||
|
|
Type RecordType `json:"type"`
|
||
|
|
Value string `json:"value"`
|
||
|
|
Route string `json:"route"`
|
||
|
|
}
|