Artifact 96a20ec37ed5e4236ef25a5b5bbc595afe9e0288a1a116684e07ec1ba9819361:
- File src/response.cr — part of check-in [baf27b579c] at 2021-03-04 01:03:18 on branch trunk — Initial work on sending a query (user: js, size: 245) [annotate] [blame] [check-ins using]
require "./rr" module AsyncDNS class Response property :name, :answer, :authority, :additional def initialize(@name : String, @answer : Array(RR), @authority : Array(RR), @additional : Array(RR)) end end end