Calculate how many hours you're working. A project in multiple languages.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

9 lines
389 B

(defproject working-hours "0.1.0"
:description "Counts how long you've been working"
:url "https://github.com/jbiason/working-hours"
:license {:name "GNU AFFERO GENERAL PUBLIC LICENSE Version 3"
:url "http://www.gnu.org/licenses/agpl-3.0.html"}
:dependencies [[org.clojure/clojure "1.10.1"]]
:repl-options {:init-ns working-hours.core}
:main working-hours.core
)