diff options
Diffstat (limited to 'src/package.lisp')
-rw-r--r-- | src/package.lisp | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/package.lisp b/src/package.lisp index 522607c..13bdf74 100644 --- a/src/package.lisp +++ b/src/package.lisp @@ -1,5 +1,7 @@ -(defpackage #:bgpstore - (:use #:cl #:asdf #:postmodern) ;can't use #:dom -- it exports LENGTH :( - (:documentation "Store BGP updates in SQL database.") - (:export :start-bgpstore - :stop-bgpstore)) +(defpackage #:bgp-logger + (:use :cl :asdf :postmodern :weblocks) ;can't use #:dom -- it exports LENGTH :( + (:shadowing-import-from :postmodern #:commit-transaction) + (:shadowing-import-from :weblocks #:text) + (:documentation "Store BGP updates in SQL database and view them in web.") + (:export :start-bgpstore :stop-bgpstore + :start-bgpview :stop-bgpview)) |