1

Is there custom extensions/directives for spray routing DSL/Akka HTTP which allow to generate documentation for given Route instance?

stanislav.chetvertkov
  • 1,620
  • 3
  • 13
  • 24

1 Answers1

3

Akka-Http evaluate their route structures lazily and hence this structure is not available upfront. Because of this, it is not as trivial to generate an API from a Route. Here are some relevant tickets: https://github.com/spray/spray/issues/780 https://github.com/akka/akka/issues/16591

Endre Varga
  • 1,863
  • 15
  • 9