git.fiddlerwoaroof.com
packages.lisp
0c0a63e1
 
 (defpackage #:com.liotev.nntp.utils
   (:use #:cl)
   (:export #:str #:slurp-file))
 
 (defpackage #:com.liotev.nntp
   (:nicknames #:cl-nntp #:nntp)
   (:use #:cl #:split-sequence #:com.liotev.nntp.utils)
   (:export #:connect
            #:group
            #:article
            #:head
            #:body
            #:stat
            #:last-article
            #:next-article
            #:authinfo
            #:help
            #:capabilities
            #:date
            #:quit
358b4256
            #:listgroup
0c0a63e1
            ;; #:mode-reader
            ;; #:list
            ;; #:newsgroups
            ;; #:newnews
            ;; #:post
            ;; #:xhdr
            ;; #:xover
            ;; #:xpat
            ))