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.

14 lines
333 B

2 years ago
  1. using Microsoft.AspNetCore.Builder;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace Shentun.WebApi.Service
  6. {
  7. public static class ServiceLocator
  8. {
  9. public static IServiceProvider Instance { get; set; }
  10. public static IApplicationBuilder ApplicationBuilder { get; set; }
  11. }
  12. }