Skip to content

Instantly share code, notes, and snippets.

@xximjasonxx
Created February 25, 2023 21:58
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 xximjasonxx/26a004e2c0ebfb90137fc47a320d324c to your computer and use it in GitHub Desktop.
Save xximjasonxx/26a004e2c0ebfb90137fc47a320d324c to your computer and use it in GitHub Desktop.
#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