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:
parent
29e1de2fd2
commit
09621f5371
4 changed files with 182 additions and 31 deletions
4
lisp/dns/package.lisp
Normal file
4
lisp/dns/package.lisp
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
(defpackage #:dns
|
||||
(:documentation "Simple DNS resolver in Common Lisp")
|
||||
(:use #:cl #:iterate #:lisp-binary)
|
||||
(:export #:lookup-txt #:lookup-mx))
|
||||
Loading…
Add table
Add a link
Reference in a new issue