Skip to content

Instantly share code, notes, and snippets.

@xximjasonxx
Created February 25, 2023 21:58
Embed
What would you like to do?
#r "Newtonsoft.Json"
using System.Net;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Primitives;
using Newtonsoft.Json;
public static IActionResult Run(HttpRequest req, ILogger log)
{
return new OkObjectResult("ping");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment