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

13 lines
291 B
C#
Raw Normal View History

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