13 lines
295 B
C#
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!");
|
|
}
|
|
}
|