namespace DotNetRuntime;
using System.Text;
using System.Text.RegularExpressions;
public class Handler
{
public async Task<RuntimeOutput> Main(RuntimeContext Context)
{
Context.Log(Context.Req.BodyRaw);
return Context.Res.Send("", 200, new Dictionary<string, string>()
{
{ "Access-Control-Allow-Origin", "*" },
{ "Access-Control-Allow-Headers", "Content-Type" },
});
}
}