fn-dotnet/Function.cs
fnkit dc136f5405
All checks were successful
/ deploy (push) Successful in 33s
initial commit - dotnet function
2026-02-17 16:45:14 +00:00

13 lines
295 B
C#

using Google.Cloud.Functions.Framework;
using Microsoft.AspNetCore.Http;
using System.Threading.Tasks;
namespace fn_dotnet;
public class Function : IHttpFunction
{
public async Task HandleAsync(HttpContext context)
{
await context.Response.WriteAsync("Hello, World!");
}
}