Skip to content

Instantly share code, notes, and snippets.

@forki
Created May 21, 2019 14:32
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 forki/d9e37efb36cc491d81ba7ae5dbc23f48 to your computer and use it in GitHub Desktop.
Save forki/d9e37efb36cc491d81ba7ae5dbc23f48 to your computer and use it in GitHub Desktop.
module SocketStop
open Microsoft.Azure.WebJobs
open System.Net.Http
open FSharp.Control.Tasks.ContextInsensitive
open Microsoft.Azure.WebJobs.Extensions.Http
open Microsoft.Extensions.Logging
open Microsoft.AspNetCore.Mvc
[<FunctionName("SocketStop")>]
let run([<HttpTrigger(AuthorizationLevel.Function, "post", "socketstop")>] req:HttpRequestMessage, log:ILogger) = task {
return ContentResult()
}
@forki
Copy link
Author

forki commented May 21, 2019

double

@forki
Copy link
Author

forki commented May 21, 2019

double2

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment