tvl-depot/lisp/dns/package.lisp
Vincent Ambo 09621f5371 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.
2020-01-26 01:20:45 +00:00

4 lines
150 B
Common Lisp

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