You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
273 B

2 years ago
  1. using System.Web;
  2. /// <summary>
  3. /// Config 的摘要说明
  4. /// </summary>
  5. public class ConfigHandler : Handler
  6. {
  7. public ConfigHandler(HttpContext context) : base(context)
  8. {
  9. }
  10. public override void Process()
  11. {
  12. WriteJson(Config.Items);
  13. }
  14. }