You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The "getting started" section explains how to implement a handler. And the samples show how to work with the library in larger projects. But I wasn't able to find any documentation for the following case:
Create an empty web api project
The generated Program.cs contains
varbuilder= WebApplication.CreateBuilder(args);varapp= builder.Build();// Remove the following minimal api line// app.MapGet("/", () => "Hello World!");
app.Run();
At least I don't know what is required to register a handler. If you let me know I could work on a PR to improve the docs :)
The text was updated successfully, but these errors were encountered:
Related to #202
The "getting started" section explains how to implement a handler. And the samples show how to work with the library in larger projects. But I wasn't able to find any documentation for the following case:
At least I don't know what is required to register a handler. If you let me know I could work on a PR to improve the docs :)
The text was updated successfully, but these errors were encountered: