Hi, I want to create custom :enum type but with a different name :enum+ to apply different decoders Is there a simple way to create custom :enum type and inherit m/-enum-schema?
This previous thread might be relevant: https://clojurians.slack.com/archives/CLDK6MFMK/p1764830209969629?thread_ts=1763749913.417939&cid=CLDK6MFMKI
No easy way to inherit, as such, but you could define :enum+ as [:enum {:decode/blah ...}]
@joel.kaasinen Thank you!