Skip to content

Instantly share code, notes, and snippets.

@boxp
Created December 26, 2014 23:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save boxp/b5b2bf86d4acab17328e to your computer and use it in GitHub Desktop.
Save boxp/b5b2bf86d4acab17328e to your computer and use it in GitHub Desktop.
hello
(reify Plugin
(get-name [this] "hello")
(on-status [this status]
(if (= (.. status getUser getScreenName) "delihiros")
(println "hello, hello!")))
(on-rt [this status])
(on-unrt [this status])
(on-fav [this source target status])
(on-unfav [this source target status])
(on-del [this status])
(on-follow [this source user])
(on-dm [this dm])
(on-start [this])
(on-click [this e]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment