Skip to content

Instantly share code, notes, and snippets.

@ahmetkucukoglu
Created November 11, 2019 19:14
Show Gist options
  • Save ahmetkucukoglu/ab177b5387ef1b934eb3477f87f69011 to your computer and use it in GitHub Desktop.
Save ahmetkucukoglu/ab177b5387ef1b934eb3477f87f69011 to your computer and use it in GitHub Desktop.
AWS Serverless Kuyruklama Sistemi Geliştirme - LambdaEntryPoint.cs
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