using System;
using System.Collections.Generic;
using System.Text;
namespace Amazon.Lambda.AspNetCoreServer
{
///
/// The modes for when the ASP.NET Core framework will be initialized.
///
public enum StartupMode
{
///
/// Initialize ASP.NET Core framework during the constructor
///
Constructor,
///
/// Initialize ASP.NET Core framework during the first incoming request
///
FirstRequest
}
}