WutheringWaves/SDKServer/Program.cs

30 lines
1.8 KiB
C#
Raw Permalink Normal View History

2024-02-07 21:41:39 +00:00
using SDKServer.Handlers;
using SDKServer.Middleware;
namespace SDKServer;
internal static class Program
{
private static async Task Main(string[] args)
{
Console.Title = "Wuthering Waves | SDK Server";
Console.WriteLine(" __ __ __ .__ .__ __ __ \r\n/ \\ / \\__ ___/ |_| |__ ___________|__| ____ ____ / \\ / \\_____ ___ __ ____ ______\r\n\\ \\/\\/ / | \\ __\\ | \\_/ __ \\_ __ \\ |/ \\ / ___\\ \\ \\/\\/ /\\__ \\\\ \\/ // __ \\ / ___/\r\n \\ /| | /| | | Y \\ ___/| | \\/ | | \\/ /_/ > \\ / / __ \\\\ /\\ ___/ \\___ \\ \r\n \\__/\\ / |____/ |__| |___| /\\___ >__| |__|___| /\\___ / \\__/\\ / (____ /\\_/ \\___ >____ >\r\n \\/ \\/ \\/ \\//_____/ \\/ \\/ \\/ \\/ \r\n\r\n\t\t\t\t\t\t\t\t\t\t\t\tSDK Server\n");
WebApplicationBuilder builder = WebApplication.CreateBuilder(args);
2024-02-07 21:41:39 +00:00
builder.WebHost.UseUrls("http://*:5500");
builder.Logging.AddSimpleConsole();
WebApplication app = builder.Build();
2024-02-07 21:41:39 +00:00
app.UseMiddleware<NotFoundMiddleware>();
app.MapGet("/api/login", LoginHandler.Login);
2024-02-18 16:50:34 +00:00
app.MapGet("/index.json", ConfigHandler.GetBaseConfig);
2024-02-07 21:41:39 +00:00
2024-02-18 16:50:34 +00:00
app.MapGet("/dev/client/mtZyW6ZYIu1pE0TCHUbXcM1oU8vx4hnb/Windows/KeyList_0.9.0.json", HotPatchHandler.OnKeyListRequest);
app.MapGet("/dev/client/mtZyW6ZYIu1pE0TCHUbXcM1oU8vx4hnb/Windows/config.json", HotPatchHandler.OnConfigRequest);
app.MapGet("/dev/client/mtZyW6ZYIu1pE0TCHUbXcM1oU8vx4hnb/Windows/client_key/0.9.0/CtBIsHPiwhwOqqBYxj/PakData", HotPatchHandler.OnPakDataRequest);
2024-02-07 21:41:39 +00:00
await app.RunAsync();
}
}