Artifact d2b49f7ae9c0b782ebbc64e1f51db93d41470eebaf025354d1789d05d39ee8c9:
- File src/response.cr — part of check-in [b6cfd2fe24] at 2021-03-05 00:59:15 on branch trunk — Initial support for sending the query (user: js, size: 326) [annotate] [blame] [check-ins using]
require "./rr" module AsyncDNS class Response property domain : String property answer : Array(RR) property authority : Array(RR) property additional : Array(RR) def initialize(@domain : String, @answer : Array(RR), @authority : Array(RR), @additional : Array(RR)) end end end