-
I have an endpoint which allows the user to download a binary file. Obviously, this is not something where a schema could be inferred. How would I write in code that |
Beta Was this translation helpful? Give feedback.
Answered by
jaskij
Mar 7, 2025
Replies: 1 comment
-
I did manage to get a handler that can be passed to |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
jaskij
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I did manage to get a handler that can be passed to
aide::axum::routing::get
by simply returningaxum::response::Response
. From there I can add documentation as usual.