mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2025-08-16 12:31:43 +02:00
.config
.run
.workdir
Agent
Common
Controller
Docker
Utils
Web
Phantom.Web
Base
Layout
Pages
Shared
Utils
wwwroot
App.razor
Configuration.cs
Phantom.Web.csproj
Program.cs
ServiceConfiguration.cs
Variables.cs
WebKey.cs
WebLauncher.cs
_Imports.razor
appsettings.json
Phantom.Web.Bootstrap
Phantom.Web.Components
Phantom.Web.Services
.dockerignore
.gitattributes
.gitignore
AddMigration.bat
AddMigration.sh
Directory.Build.props
Directory.Build.targets
Dockerfile
LICENSE
Packages.props
PhantomPanel.sln
README.md
global.json
8 lines
282 B
C#
8 lines
282 B
C#
using ILogger = Serilog.ILogger;
|
|
|
|
namespace Phantom.Web;
|
|
|
|
sealed record Configuration(ILogger Logger, string Host, ushort Port, string BasePath, string DataProtectionKeyFolderPath, CancellationToken CancellationToken) {
|
|
public string HttpUrl => "http://" + Host + ":" + Port;
|
|
}
|