Hi! I'm new to clojure and I'm trying to create a websocket server/client to send and receive text messages. However I'm getting compilation errors when requiring websocket-routes at main handler with reitit ring router: Wrong number of args (0) passed to: clojure.lang.PersistentVector
. Do you guys see anything wrong with this code that might cause this?
Didn't you miss the websocket callback? http://www.luminusweb.net/docs/websockets.html
Thanks, guys, but strangely enough the issue was in my faulty Java installation. After reinstalling it the program compiled correctly. Appreciate the tips