Last active
March 4, 2018 09:52
-
-
Save mrserverless/b4abb8380e119be89121f9a9fab62d79 to your computer and use it in GitHub Desktop.
Lambda Performance Benchmarks
This file contains hidden or 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
using System; | |
namespace AwsDotnetCsharp | |
{ | |
public class Handler | |
{ | |
public Response Hello(Request request) | |
{ | |
return new Response { | |
statusCode = 200, | |
body = "hello" | |
}; | |
} | |
} | |
public class Response | |
{ | |
public int statusCode { get; set;} | |
public string body {get; set;} | |
} | |
public class Request | |
{ | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment