using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ServerLib
{
public interface IServer
{
///
/// 响应GET方法
///
/// Http请求
void OnGet(HttpRequest request, HttpResponse response);
///
/// 响应Post方法
///
/// Http请求
void OnPost(HttpRequest request, HttpResponse response);
///
/// 响应默认请求
///
/// Http请求
void OnDefault(HttpRequest request, HttpResponse response);
}
}