using LJProxy.LJLib.Net.SPI.Server; using LJProxy.Models; using Microsoft.AspNetCore.Mvc; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace LJProxy.Excutor { public class GetProxyDomainListExcutor : ExcutorBase { protected override IActionResult ExcuteInternal(GetProxyDomainListRequest request, object state) { GetProxyDomainListResponse rslt = new GetProxyDomainListResponse(); rslt.ErrMsg = ""; rslt.DomainList = GlobalVar.Setting.ProxyDomainList; return new JsonResult(rslt); } } }