Skip to content

Instantly share code, notes, and snippets.

@chathurangat
Created February 21, 2018 10:36
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 chathurangat/0febddc8351923d2a48227819aa4c413 to your computer and use it in GitHub Desktop.
Save chathurangat/0febddc8351923d2a48227819aa4c413 to your computer and use it in GitHub Desktop.
export class RequestHandlerService
{
static async handleHttpRequest(requestMethod, urlPattern)
{
return "HTTP " + requestMethod + " " + urlPattern + " received";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment