DocSpace-buildtools/web/ASC.Web.Api/Startup.cs

13 lines
262 B
C#
Raw Normal View History

2022-03-01 10:58:02 +00:00
namespace ASC.Web.Api;
public class Startup : BaseStartup
2020-07-03 15:57:59 +00:00
{
2022-03-01 10:58:02 +00:00
public override bool ConfirmAddScheme { get => true; }
public Startup(IConfiguration configuration, IHostEnvironment hostEnvironment) : base(configuration, hostEnvironment)
{
2020-07-15 12:33:44 +00:00
2022-03-01 10:58:02 +00:00
}
2020-07-03 15:57:59 +00:00
}