package.lisp @ d69d74b71d8f

Build this thing
author Steve Losh <steve@stevelosh.com>
date Mon, 16 Jan 2017 21:20:27 +0000
parents 5cfeafea0350
children ce9a7a79f999
(defpackage :magitek.twitter
  (:use
    :cl
    :iterate
    :cl-arrows
    :losh
    :magitek.quickutils)
  (:export
    :tt-load-credentials
    :tt-authorize
    :tt-tweetable-p
    :tt-tweet))

(defpackage :magitek.database
  (:use
    :cl
    :losh
    :sqlite
    :magitek.quickutils)
  (:export
    :db-connect
    :db-initialize
    :db-insert-tweet
    :db-tweeted-since-p))


(defpackage :magitek.robots.git-commands
  (:use
    :cl
    :iterate
    :cl-arrows
    :losh
    :chancery
    :magitek.quickutils)
  (:export :random-string))


(defpackage :magitek
  (:use
    :cl
    :iterate
    :cl-arrows
    :losh
    :magitek.twitter
    :magitek.database
    :magitek.quickutils)
  (:export
    :main))