diff options
author | Vincent Ambo <tazjin@google.com> | 2020-01-26T01·18+0000 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2020-01-26T01·20+0000 |
commit | 09621f53716240c6a48cac7f09193a43b0ad305b (patch) | |
tree | 5d32bb2f4c6626a417bee511b5e9304b58385474 /lisp/dns/package.lisp | |
parent | 29e1de2fd248ec4e152d5b0c83514fa57bcb0a33 (diff) |
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.
Diffstat (limited to 'lisp/dns/package.lisp')
-rw-r--r-- | lisp/dns/package.lisp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/dns/package.lisp b/lisp/dns/package.lisp new file mode 100644 index 000000000000..639d9994aa4b --- /dev/null +++ b/lisp/dns/package.lisp @@ -0,0 +1,4 @@ +(defpackage #:dns + (:documentation "Simple DNS resolver in Common Lisp") + (:use #:cl #:iterate #:lisp-binary) + (:export #:lookup-txt #:lookup-mx)) |