비동기함수 잘못된 사용으로 인한 롤백

This commit is contained in:
김판돌 2024-08-27 19:07:41 +09:00
parent 054f74d743
commit f90a1ae65a
2 changed files with 2 additions and 12 deletions

View File

@ -17,12 +17,4 @@ app.MapPost("/", ProtocolProcessor.Process);
//git 접근용 웹훅 //git 접근용 웹훅
app.MapPost("/git", GItWebhook.Process); app.MapPost("/git", GItWebhook.Process);
//app.MapPost("/update", GItWebhook.Process);
//#if DEBUG
//app.MapGet("/spin", Spin.Main);
//app.MapPost("/spin/random", Spin.Random);
//#endif
app.Run(Statics.URL); app.Run(Statics.URL);

View File

@ -25,10 +25,8 @@ namespace Server.Service
resp.status = 200; resp.status = 200;
return resp.ToJson(); return resp.ToJson();
} }
} }
//요청값
public class AwakeTestReq : Req public class AwakeTestReq : Req
{ {
public override bool IsReceivedAllField() public override bool IsReceivedAllField()
@ -38,7 +36,7 @@ namespace Server.Service
return true; return true;
} }
} }
//반환값
public class AwakeTestResp : Resp public class AwakeTestResp : Resp
{ {