forked from Moux23333/FreeSR
22 lines
814 B
C#
22 lines
814 B
C#
namespace FreeSR.Dispatch.Handlers
|
|
{
|
|
using Ceen;
|
|
using FreeSR.Dispatch.Util;
|
|
using FreeSR.Proto;
|
|
|
|
internal class GetExperimentListHandler : IHttpModule
|
|
{
|
|
public async Task<bool> HandleAsync(IHttpContext context)
|
|
{
|
|
context.Response.StatusCode = HttpStatusCode.OK;
|
|
context.Response.ContentType = "application/json";
|
|
await context.Response.WriteAllJsonAsync(DispatchResponseBuilder.Create()
|
|
.Retcode(Retcode.RETCODE_RET_SUCC)
|
|
.Boolean("success", true)
|
|
.String("message", "")
|
|
.Build());
|
|
|
|
return true;
|
|
}
|
|
}
|
|
}
|