We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is your feature request related to a problem? Please describe. Feature request
Describe the solution you'd like The content of the request handlers should be like this:
namespace PetStore.PrintLines; public class GetPrintLineHandler : IGetPrintLineHandler { public async Task<GetPrintLineResult> ExecuteAsync( GetPrintLineParameters parameters, CancellationToken cancellationToken = default) { throw new System.NotImplementedException(); } }
The files containing the Handler implementation should not be nested in a Handlers folder but in root\Typename\Handlers\
root\Typename\Handlers\
The text was updated successfully, but these errors were encountered:
Fixed, see docs:
https://github.com/atc-net/atc-rest-api-generator?tab=readme-ov-file#syntax
Sorry, something went wrong.
No branches or pull requests
Is your feature request related to a problem? Please describe.
Feature request
Describe the solution you'd like
The content of the request handlers should be like this:
The files containing the Handler implementation should not be nested in a Handlers folder but in
root\Typename\Handlers\
The text was updated successfully, but these errors were encountered: