1
0
mirror of https://github.com/bitwarden/server.git synced 2025-05-07 20:52:21 -05:00
bitwarden/util/Setup/SetupHostEnvironment.cs
2025-05-03 14:10:28 -04:00

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";
}