비동기함수 잘못된 사용으로 인한 롤백
This commit is contained in:
parent
054f74d743
commit
f90a1ae65a
|
|
@ -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);
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue