diff --git a/Newsbot.Collector.Api/Controllers/v1/CodeProjectController.cs b/Newsbot.Collector.Api/Controllers/v1/CodeProjectController.cs index d33cba1..5937767 100644 --- a/Newsbot.Collector.Api/Controllers/v1/CodeProjectController.cs +++ b/Newsbot.Collector.Api/Controllers/v1/CodeProjectController.cs @@ -3,7 +3,7 @@ using Microsoft.AspNetCore.Authentication.JwtBearer; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Options; -using Newsbot.Collector.Api.Domain; +using Newsbot.Collector.Api.Domain.Consts; using Newsbot.Collector.Domain.Models.Config; using Newsbot.Collector.Services.Jobs; diff --git a/Newsbot.Collector.Api/Controllers/v1/IdentityController.cs b/Newsbot.Collector.Api/Controllers/v1/IdentityController.cs index b260be5..aac302c 100644 --- a/Newsbot.Collector.Api/Controllers/v1/IdentityController.cs +++ b/Newsbot.Collector.Api/Controllers/v1/IdentityController.cs @@ -1,6 +1,6 @@ using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; -using Newsbot.Collector.Api.Domain; +using Newsbot.Collector.Api.Domain.Consts; using Newsbot.Collector.Domain.Requests; using Newsbot.Collector.Domain.Response; using Newsbot.Collector.Domain.Results; diff --git a/Newsbot.Collector.Api/Controllers/v1/RssController.cs b/Newsbot.Collector.Api/Controllers/v1/RssController.cs index 9b31637..bda6e84 100644 --- a/Newsbot.Collector.Api/Controllers/v1/RssController.cs +++ b/Newsbot.Collector.Api/Controllers/v1/RssController.cs @@ -3,7 +3,7 @@ using Microsoft.AspNetCore.Authentication.JwtBearer; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Options; -using Newsbot.Collector.Api.Domain; +using Newsbot.Collector.Api.Domain.Consts; using Newsbot.Collector.Domain.Models.Config; using Newsbot.Collector.Domain.Models.Config.Sources; using Newsbot.Collector.Services.Jobs;