thewar_server/Server/Program.cs

21 lines
367 B
C#

using Server.System;
var builder = WebApplication.CreateBuilder(args);
var app = builder.Build();
//웹서버 초기화
ProtocolProcessor.Init();
//깃 웹훅 초기화
GItWebhook.Init();
//스케줄러 초기화
Statics.session.Start();
//http용 데이터
app.MapPost("/", ProtocolProcessor.Process);
//git 접근용 웹훅
app.MapPost("/git", GItWebhook.Process);
app.Run(Statics.URL);