lambdaisland

martinklepsch 2017-01-05T04:07:04.000382Z

@dhruv1 the issue is that using macros you can reach into Clojure code at compile time but not at run time. So if you need to access the db connection during runtime you’ll need to come up with something else

martinklepsch 2017-01-05T04:07:18.000383Z

e.g. HTTP, websockets, ...

2017-01-05T20:58:26.000388Z

@martinklepsch yeah that’s what I’m going to have to do. thanks