Creating an HTTP trigger

Create a new HTTP trigger and replace the following code that just prints a message when it is executed:

using System.Net;
using Microsoft.AspNetCore.Mvc;
public static async Task<IActionResult> Run(HttpRequest req, ILogger log)
{
return (ActionResult)new OkObjectResult($"Hello User! Thanks for keeping me Warm");
}