mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-09 12:00: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"
|
|
RecordTypeTXT 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"`
|
|
}
|