init biff project

This commit is contained in:
Travis Shears 2025-06-04 10:47:38 +02:00
commit c652b828e8
26 changed files with 1220 additions and 0 deletions

14
dev/tasks.clj Normal file
View 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))