please advice, is there a way to read custom reader tags from application/edn
stream w/o overriding parse-stream "application/edn"
?
https://github.com/juxt/yada/blob/master/src/yada/request_body.clj
I want to read #date "2019-08-26"
as LocalDate
thanks
@kirill.salykin it’s probably a multimethod so you can provide your own thing if you need to
Maybe registering them in data_readers.clj works though?
data_readers.clj
seems not working
so will override multimethod
according to the code - there is no other way
thanks