| 21 | namespace helloworld |
| 22 | { |
| 23 | public class Startup |
| 24 | { |
| 25 | public void ConfigureServices(IServiceCollection services) |
| 26 | { |
| 27 | } |
| 28 | |
| 29 | public void Configure(IApplicationBuilder app, IWebHostEnvironment env) |
| 30 | { |
| 31 | app.UseRouting(); |
| 32 | |
| 33 | app.UseEndpoints(endpoints => |
| 34 | { |
| 35 | endpoints.MapGet("/", async context => |
| 36 | { |
| 37 | await context.Response.WriteAsync("hello, world"); |
| 38 | }); |
| 39 | }); |
| 40 | } |
| 41 | } |
| 42 | } |
nothing calls this directly
no outgoing calls
no test coverage detected