Artifact 05324bedebcf15ebbcc8540740a9b897329026f009e067d19739a49705ae79e7:
- File src/response.cr — part of check-in [c210ddc089] at 2021-03-04 02:09:32 on branch trunk — Some cleanups (user: js, size: 322) [annotate] [blame] [check-ins using]
require "./rr" module AsyncDNS class Response property name : String property answer : Array(RR) property authority : Array(RR) property additional : Array(RR) def initialize(@name : String, @answer : Array(RR), @authority : Array(RR), @additional : Array(RR)) end end end