Skip to content

Instantly share code, notes, and snippets.

@timmc
Last active August 29, 2015 14:22
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 timmc/d0c18ec2ec3da13f3cfd to your computer and use it in GitHub Desktop.
Save timmc/d0c18ec2ec3da13f3cfd to your computer and use it in GitHub Desktop.
AOT barrier/shell
(ns sdfunc.cli-shell
"AOT barrier for sdfunc.cli."
(:gen-class))
(defn -main
"Chain to sdfunc.cli/main."
[& args]
(apply (ns-resolve (doto 'sdfunc.cli (require)) 'main) args))
:main sdfunc.cli-shell
:aot [sdfunc.cli-shell]
:repl-options {:init-ns sdfunc.cli}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment