diff --git a/YTManager/Controllers/Admin.cs b/YTManager/Controllers/Admin.cs index 3f1648f..89625cc 100644 --- a/YTManager/Controllers/Admin.cs +++ b/YTManager/Controllers/Admin.cs @@ -1,12 +1,5 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; -using Microsoft.AspNetCore.Http; +using System.Linq; using Microsoft.AspNetCore.Mvc; -using Microsoft.EntityFrameworkCore; -using YTManager; -using YTManager.Models; using Hangfire.Storage; namespace YTManager.Controllers { diff --git a/YTManager/Controllers/Channels.cs b/YTManager/Controllers/Channels.cs index a030396..a7ccce5 100644 --- a/YTManager/Controllers/Channels.cs +++ b/YTManager/Controllers/Channels.cs @@ -1,14 +1,8 @@ -using System; -using System.Collections.Generic; -using System.Linq; +using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Mvc; -using Newtonsoft.Json.Linq; using Microsoft.EntityFrameworkCore; -using YTManager; -using YTManager.Models; - namespace YTManager.Controllers { [Produces("application/json")] [Route("api/Channels")] diff --git a/YTManager/Controllers/Videos.cs b/YTManager/Controllers/Videos.cs index 908650c..5660003 100644 --- a/YTManager/Controllers/Videos.cs +++ b/YTManager/Controllers/Videos.cs @@ -1,12 +1,7 @@ -using System; -using System.Collections.Generic; -using System.Linq; +using System.Linq; using System.Threading.Tasks; -using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using Microsoft.EntityFrameworkCore; -using YTManager; -using YTManager.Models; namespace YTManager.Controllers { [Produces("application/json")] diff --git a/YTManager/MediaDB.cs b/YTManager/MediaDB.cs index 7034931..d62c90c 100644 --- a/YTManager/MediaDB.cs +++ b/YTManager/MediaDB.cs @@ -1,8 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; -using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore; namespace YTManager { diff --git a/YTManager/Models/Channel.cs b/YTManager/Models/Channel.cs index 9fcac58..a50fbed 100644 --- a/YTManager/Models/Channel.cs +++ b/YTManager/Models/Channel.cs @@ -1,7 +1,5 @@ using System; using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; using System.ComponentModel.DataAnnotations; namespace YTManager.Models { diff --git a/YTManager/Models/Tag.cs b/YTManager/Models/Tag.cs index 2915f02..e6d5928 100644 --- a/YTManager/Models/Tag.cs +++ b/YTManager/Models/Tag.cs @@ -1,8 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; -using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations; namespace YTManager.Models { diff --git a/YTManager/Models/Video.cs b/YTManager/Models/Video.cs index 6162123..e9be990 100644 --- a/YTManager/Models/Video.cs +++ b/YTManager/Models/Video.cs @@ -1,7 +1,5 @@ using System; using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; using System.ComponentModel.DataAnnotations; namespace YTManager.Models { diff --git a/YTManager/Program.cs b/YTManager/Program.cs index 98edb8a..8434197 100644 --- a/YTManager/Program.cs +++ b/YTManager/Program.cs @@ -1,12 +1,6 @@ -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Threading.Tasks; +using System.IO; using Microsoft.AspNetCore; using Microsoft.AspNetCore.Hosting; -using Microsoft.Extensions.Configuration; -using Microsoft.Extensions.Logging; namespace YTManager { diff --git a/YTManager/Startup.cs b/YTManager/Startup.cs index 58933e2..15623d1 100644 --- a/YTManager/Startup.cs +++ b/YTManager/Startup.cs @@ -1,13 +1,8 @@ using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; -using Microsoft.Extensions.Logging; -using Microsoft.Extensions.Options; using Hangfire; using Hangfire.PostgreSql; using Microsoft.EntityFrameworkCore;