Created
May 27, 2021 19:11
-
-
Save codemillmatt/7ef9a84e8a250a267ccccb88df98e379 to your computer and use it in GitHub Desktop.
Funky iPad Function
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[FunctionName("LetsGetFunky")] | |
public static async Task<IActionResult> Run( | |
[HttpTrigger(AuthorizationLevel.Anonymous, "get", "post", Route = null)] HttpRequest req, | |
ILogger log) | |
{ | |
string[] thingsICanDo = new string[] { | |
"Write .NET apps on an IPAD!!", | |
"Write Azure Functions on an IPAD!!", | |
"Write blogs on an IPAD!!!" | |
}; | |
return new OkObjectResult(thingsICanDo); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment