-
When using the following method, an error will be reported when the number of API groups is greater than 16. let api_service =OpenApiService::new((Api1,Api2,...), "Todos", "1.0.0").server("http://localhost:3000");
let ui = api_service.swagger_ui();
let spec = api_service.spec(); Lines 392 to 400 in 008679d In the actual system, it is common to have more than 16 API groups. Please tell me how to handle this requirement in poem, thanks! |
Beta Was this translation helpful? Give feedback.
Answered by
sunli829
May 14, 2022
Replies: 1 comment 1 reply
-
This tuple can be nested. ((Api1, Api2,... Api16), (Api17, Api18,... Api32), ...) |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
gudaoxuri
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This tuple can be nested.