integrant

2019-02-01T11:59:02.005300Z

@grierson It seems fine, except that you use camelCase naming convention in places, which isn't really a thing in Clojure. Better to use :handler/get-reservations, or even better, :handler.reservations/get.

1❤️
2019-02-01T12:01:34.006300Z

I think I'd also use :dorsia.reservations.repository/memory and derive it from dorsia.reservations/repository.

2019-02-01T12:01:52.006800Z

That way you can replace the memory repository with something else in future, should the need arise.

grierson 2019-02-01T13:41:05.007100Z

@weavejester Thank you.