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 {