From dd6e8c19c351c7be8465806662ab53f0ada22060 Mon Sep 17 00:00:00 2001 From: SummmerLost <1449109960@qq.com> Date: Fri, 11 Nov 2022 10:32:03 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E6=95=B4=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PEIS.Interface/Program.cs | 8 +------- PEIS.Interface/Startup.cs | 12 ++++++------ 2 files changed, 7 insertions(+), 13 deletions(-) diff --git a/PEIS.Interface/Program.cs b/PEIS.Interface/Program.cs index 9d55eb4..b0486a1 100644 --- a/PEIS.Interface/Program.cs +++ b/PEIS.Interface/Program.cs @@ -1,14 +1,8 @@ using Microsoft.AspNetCore.Hosting; -using Microsoft.Extensions.Configuration; using Microsoft.Extensions.Hosting; -using Microsoft.Extensions.Logging; using NLog.Web; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; -namespace PEIS.Interface +namespace PEIS.Cloud { public class Program { diff --git a/PEIS.Interface/Startup.cs b/PEIS.Interface/Startup.cs index 7be2eb6..3a6094c 100644 --- a/PEIS.Interface/Startup.cs +++ b/PEIS.Interface/Startup.cs @@ -1,3 +1,8 @@ +using System; +using System.Collections.Generic; +using System.IO; +using System.Reflection; +using System.Text; using Microsoft.AspNetCore.Authentication.JwtBearer; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; @@ -6,15 +11,10 @@ using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using Microsoft.IdentityModel.Tokens; using Microsoft.OpenApi.Models; -using System; -using System.Collections.Generic; -using System.IO; -using System.Reflection; -using System.Text; using PEIS.Common.Helper.Encryption; using PEIS.Common.Middleware; -namespace PEIS.Interface +namespace PEIS.Cloud { public class Startup {