Created
November 11, 2019 19:14
-
-
Save ahmetkucukoglu/ab177b5387ef1b934eb3477f87f69011 to your computer and use it in GitHub Desktop.
AWS Serverless Kuyruklama Sistemi Geliştirme - LambdaEntryPoint.cs
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
namespace AwsDotnetCsharp | |
{ | |
using Microsoft.AspNetCore.Hosting; | |
public class LambdaEntryPoint : Amazon.Lambda.AspNetCoreServer.APIGatewayProxyFunction | |
{ | |
protected override void Init(IWebHostBuilder builder) | |
{ | |
builder.UseStartup<Startup>(); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment