Files
herolib/lib/develop/luadns/model.v
Mahmoud Emad 4c01c88b85 WIP: Building hero
- The work is still in progress

Co-authored-by: supermario <mariobassem12@gmail.com>
2025-01-02 19:01:37 +02:00

29 lines
321 B
V

module luadns
struct ARecord {
mut:
name string
ip string
}
struct CNAMERecord {
mut:
name string
alias string
}
struct CAARecord {
mut:
name string
value string
tag string
}
struct DNSConfig {
mut:
domain string
a_records []ARecord
cname_records []CNAMERecord
caa_records []CAARecord
}