Guest User

Untitled

a guest
Apr 21st, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. {:duct.core/project-ns anathema-re
  2. :duct.core/environment :production
  3.  
  4. :duct.module/logging {}
  5. :duct.module.web/site {}
  6. :duct.module/cljs {:main anathema-re.client}
  7.  
  8. :duct.core/handler {:middleware [#ig/ref :anathema-re.middleware/gzip]}
  9.  
  10. :anathema-re.middleware/gzip {}
  11.  
  12. :duct.router/cascading
  13. [#ig/ref :anathema-re.handler/example
  14. #ig/ref :anathema-re.handler/site
  15. #ig/ref :anathema-re.handler/api]
  16.  
  17. :anathema-re.boundary/environ {}
  18. :anathema-re.boundary.mongo/connection {:environ #ig/ref :anathema-re.boundary/environ}
  19. :anathema-re.boundary/get {:mongo #ig/ref :anathema-re.boundary.mongo/connection}
  20. :anathema-re.boundary/put {:mongo #ig/ref :anathema-re.boundary.mongo/connection}
  21.  
  22. :anathema-re.handler/example {}
  23. :anathema-re.handler/site {:get-thing #ig/ref :anathema-re.boundary/get
  24. :put-thing! #ig/ref :anathema-re.boundary/put}
  25. :anathema-re.handler/api {:get-thing #ig/ref :anathema-re.boundary/get
  26. :put-thing! #ig/ref :anathema-re.boundary/put}}
Add Comment
Please, Sign In to add comment