package.lisp @ ce9a7a79f999

Add a Markov generator
author Steve Losh <steve@stevelosh.com>
date Mon, 16 Jan 2017 22:39:22 +0000
parents d69d74b71d8f
children 824673714b91
(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.markov
  (:use
    :cl
    :losh
    :iterate
    :cl-arrows
    :magitek.quickutils)
  (:export
    ))


(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))