adds the ability to use clj-time literals elsewhere.

This commit is contained in:
2021-11-25 09:28:21 -08:00
parent 1d32f19ce3
commit 450a5fc656

View File

@@ -0,0 +1,5 @@
(ns auto-ap.time-reader)
(defmethod print-dup org.joda.time.DateTime
[^org.joda.time.DateTime d out]
(.write out (str "#=" `(org.joda.time.DateTime. ~(.getMillis d)))))