clara 2020-06-23

@leorog has joined the channel

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

You can just pass the namespaces as args I.e

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

👍 1

Oh, sorry, it's & args

You're right, sorry for the stupid question