|
@ -0,0 +1,27 @@ |
|
|
|
|
|
global using Microsoft.AspNetCore.Authentication; |
|
|
|
|
|
global using Microsoft.AspNetCore.Authentication.Cookies; |
|
|
|
|
|
global using Microsoft.AspNetCore.Authentication.OpenIdConnect; |
|
|
|
|
|
global using Microsoft.AspNetCore.Authorization; |
|
|
|
|
|
global using Microsoft.AspNetCore.Mvc; |
|
|
|
|
|
global using System.Security.Claims; |
|
|
|
|
|
global using System.Threading.Tasks; |
|
|
|
|
|
global using Microsoft.Extensions.Logging; |
|
|
|
|
|
global using Microsoft.Extensions.Options; |
|
|
|
|
|
global using System.Linq; |
|
|
|
|
|
global using WebhookClient.Models; |
|
|
|
|
|
global using WebhookClient.Services; |
|
|
|
|
|
global using System; |
|
|
|
|
|
global using System.Collections.Generic; |
|
|
|
|
|
global using System.Net.Http; |
|
|
|
|
|
global using System.Text.Json; |
|
|
|
|
|
global using Microsoft.AspNetCore.Http; |
|
|
|
|
|
global using System.Net.Http.Headers; |
|
|
|
|
|
global using System.Threading; |
|
|
|
|
|
global using Microsoft.AspNetCore; |
|
|
|
|
|
global using Microsoft.AspNetCore.Hosting; |
|
|
|
|
|
global using WebhookClient; |
|
|
|
|
|
global using Microsoft.AspNetCore.Builder; |
|
|
|
|
|
global using Microsoft.Extensions.Configuration; |
|
|
|
|
|
global using Microsoft.Extensions.DependencyInjection; |
|
|
|
|
|
global using Microsoft.Extensions.Hosting; |
|
|
|
|
|
global using System.Net; |