项目结构

This commit is contained in:
2025-08-28 18:23:06 +08:00
parent ecfdbd5f86
commit cacbd7e8f6
79 changed files with 74812 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
namespace FATrace.MediaServer
{
public class Program
{
public static void Main(string[] args)
{
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddRazorPages();
var app = builder.Build();
// Configure the HTTP request pipeline.
if (!app.Environment.IsDevelopment())
{
app.UseExceptionHandler("/Error");
}
app.UseStaticFiles();
app.UseRouting();
app.UseAuthorization();
app.MapRazorPages();
app.Run();
}
}
}