Fork me on GitHub
#clara
<
2020-06-23
>
PB17:06:28

How does one distribute rules over multiple ns's? mk-session seems to imply that I can pass in multiple ns's

(mk-session ['my.core 'my.somethingelse] :cache false) 
But it appears this is not the case

mbragg18:06:01

You can just pass the namespaces as args I.e

(mk-session 'my.core 'my.somethingelse :cache false) 

👍 3
PB18:06:25

Oh, sorry, it's & args

PB18:06:31

You're right, sorry for the stupid question

mbragg18:06:12

No worries 😀