GithubScanDelegate.cs 293 B

1234567891011
  1. using System.Threading.Tasks;
  2. namespace FastGithub.Scanner
  3. {
  4. /// <summary>
  5. /// 表示所有中间件执行委托
  6. /// </summary>
  7. /// <param name="context">中间件上下文</param>
  8. /// <returns></returns>
  9. delegate Task GithubScanDelegate(GithubContext context);
  10. }