Skip to content

Instantly share code, notes, and snippets.

@cmatskas
Created July 31, 2020 16:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cmatskas/8f36ab843559cb03e608638aabb21377 to your computer and use it in GitHub Desktop.
Save cmatskas/8f36ab843559cb03e608638aabb21377 to your computer and use it in GitHub Desktop.
using System.Threading.Tasks;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Http;
namespace testFeather
{
class Program
{
static async Task Main(string[] args)
{
var app = WebApplication.Create(args);
app.MapGet("/", async http =>
{
await http.Response.WriteAsync("Hello World!");
});
await app.RunAsync();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment