24 lines
604 B
C#
24 lines
604 B
C#
using HuanMeng.DotNetCore.JwtInfrastructure;
|
|
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Hosting;
|
|
using Microsoft.AspNetCore.Authentication.JwtBearer;
|
|
using Microsoft.IdentityModel.Tokens;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using HuanMeng.DotNetCore.JwtInfrastructure.Interface;
|
|
|
|
namespace HuanMeng.MiaoYu.Code.Other
|
|
{
|
|
/// <summary>
|
|
/// jwt接口验证
|
|
/// </summary>
|
|
public static class JwtTokenManageExtension
|
|
{
|
|
}
|
|
}
|