mirror of
https://github.com/bitwarden/server.git
synced 2025-05-07 20:52:21 -05:00
13 lines
439 B
C#
13 lines
439 B
C#
using Microsoft.Extensions.FileProviders;
|
|
using Microsoft.Extensions.Hosting;
|
|
|
|
namespace Bit.Setup;
|
|
|
|
internal class SetupHostEnvironment : IHostEnvironment
|
|
{
|
|
public string ApplicationName { get; set; } = "Setup";
|
|
public IFileProvider ContentRootFileProvider { get; set; } = new NullFileProvider();
|
|
public string ContentRootPath { get; set; } = string.Empty;
|
|
public string EnvironmentName { get; set; } = "Production";
|
|
}
|