package.lisp @ f9fe3b75ce0a

Retire hacker-booze
author Steve Losh <steve@stevelosh.com>
date Sat, 04 Nov 2017 13:14:02 -0400
parents a5de24e85f19
children 2e2dce507991
(defpackage :magitek.twitter
  (:use
    :cl
    :iterate
    :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
    :magitek.quickutils)
  (:export
    :build-markov-generator
    :generate-sentence))


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

(defpackage :magitek.robots.lisp-talks
  (:use
    :cl
    :iterate
    :losh
    :chancery
    :magitek.quickutils)
  (:export :random-string))

(defpackage :magitek.robots.rpg-shopkeeper
  (:use
    :cl
    :iterate
    :losh
    :chancery
    :magitek.quickutils)
  (:export :random-string))

(defpackage :magitek.robots.frantic-barista
  (:use
    :cl
    :iterate
    :losh
    :chancery
    :magitek.quickutils)
  (:export :random-string))


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