refactor(lisp/dns): Split package into multiple files

Adds a package definition file and moves the current client into
client.lisp

Note that the client is not working at all at this commit as this is a
work-in-progress snapshot.
This commit is contained in:
Vincent Ambo 2020-01-26 01:18:34 +00:00
parent 29e1de2fd2
commit 09621f5371
4 changed files with 182 additions and 31 deletions

4
lisp/dns/package.lisp Normal file
View file

@ -0,0 +1,4 @@
(defpackage #:dns
(:documentation "Simple DNS resolver in Common Lisp")
(:use #:cl #:iterate #:lisp-binary)
(:export #:lookup-txt #:lookup-mx))