init biff project
This commit is contained in:
commit
c652b828e8
26 changed files with 1220 additions and 0 deletions
14
dev/tasks.clj
Normal file
14
dev/tasks.clj
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
(ns tasks
|
||||
(:require [com.biffweb.tasks :as tasks]))
|
||||
|
||||
(defn hello
|
||||
"Says 'Hello'"
|
||||
[]
|
||||
(println "Hello"))
|
||||
|
||||
;; Tasks should be vars (#'hello instead of hello) so that `clj -M:dev help` can
|
||||
;; print their docstrings.
|
||||
(def custom-tasks
|
||||
{"hello" #'hello})
|
||||
|
||||
(def tasks (merge tasks/tasks custom-tasks))
|
||||
Loading…
Add table
Add a link
Reference in a new issue