Changed some namespaces, work on packages
This commit is contained in:
@ -1,9 +1,9 @@
|
||||
using System;
|
||||
using NadekoBot.Common;
|
||||
using NadekoBot.Services.Database.Models;
|
||||
using NadekoBot.Services;
|
||||
using NadekoBot.Core.Services.Database.Models;
|
||||
using NadekoBot.Core.Services;
|
||||
|
||||
namespace NadekoBot.Services.Impl
|
||||
namespace NadekoBot.Core.Services.Impl
|
||||
{
|
||||
public class BotConfigProvider : IBotConfigProvider
|
||||
{
|
||||
|
@ -8,7 +8,7 @@ using Microsoft.Extensions.Configuration;
|
||||
using System.Collections.Immutable;
|
||||
using NadekoBot.Common;
|
||||
|
||||
namespace NadekoBot.Services.Impl
|
||||
namespace NadekoBot.Core.Services.Impl
|
||||
{
|
||||
public class BotCredentials : IBotCredentials
|
||||
{
|
||||
|
@ -14,7 +14,7 @@ using System.Net;
|
||||
using Newtonsoft.Json.Linq;
|
||||
using NadekoBot.Extensions;
|
||||
|
||||
namespace NadekoBot.Services.Impl
|
||||
namespace NadekoBot.Core.Services.Impl
|
||||
{
|
||||
public class GoogleApiService : IGoogleApiService
|
||||
{
|
||||
|
@ -4,7 +4,7 @@ using System.Collections.Immutable;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
|
||||
namespace NadekoBot.Services.Impl
|
||||
namespace NadekoBot.Core.Services.Impl
|
||||
{
|
||||
public class ImagesService : IImagesService
|
||||
{
|
||||
|
@ -4,12 +4,12 @@ using System.Globalization;
|
||||
using System.Linq;
|
||||
using Discord;
|
||||
using NLog;
|
||||
using NadekoBot.Services.Database.Models;
|
||||
using NadekoBot.Core.Services.Database.Models;
|
||||
using NadekoBot.Common;
|
||||
using Newtonsoft.Json;
|
||||
using System.IO;
|
||||
|
||||
namespace NadekoBot.Services.Impl
|
||||
namespace NadekoBot.Core.Services.Impl
|
||||
{
|
||||
public class Localization : ILocalization
|
||||
{
|
||||
|
@ -8,7 +8,7 @@ using System.Text.RegularExpressions;
|
||||
using Newtonsoft.Json;
|
||||
using NLog;
|
||||
|
||||
namespace NadekoBot.Services.Impl
|
||||
namespace NadekoBot.Core.Services.Impl
|
||||
{
|
||||
public class NadekoStrings : INService
|
||||
{
|
||||
|
@ -1,7 +1,7 @@
|
||||
using StackExchange.Redis;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace NadekoBot.Services.Impl
|
||||
namespace NadekoBot.Core.Services.Impl
|
||||
{
|
||||
public class RedisCache : IDataCache
|
||||
{
|
||||
|
@ -4,7 +4,7 @@ using System.Linq;
|
||||
using System.Net.Http;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace NadekoBot.Services.Impl
|
||||
namespace NadekoBot.Core.Services.Impl
|
||||
{
|
||||
public class SoundCloudApiService : INService
|
||||
{
|
||||
|
@ -4,7 +4,7 @@ using System.Collections.Immutable;
|
||||
using System.Linq;
|
||||
using System.Collections;
|
||||
|
||||
namespace NadekoBot.Services.Impl
|
||||
namespace NadekoBot.Core.Services.Impl
|
||||
{
|
||||
public class StartingGuildsService : IEnumerable<long>, INService
|
||||
{
|
||||
|
@ -15,7 +15,7 @@ using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using StackExchange.Redis;
|
||||
|
||||
namespace NadekoBot.Services.Impl
|
||||
namespace NadekoBot.Core.Services.Impl
|
||||
{
|
||||
public class StatsService : IStatsService
|
||||
{
|
||||
|
@ -1,4 +1,4 @@
|
||||
namespace NadekoBot.Services.Impl
|
||||
namespace NadekoBot.Core.Services.Impl
|
||||
{
|
||||
public class SyncPreconditionService
|
||||
{
|
||||
|
@ -3,7 +3,7 @@ using System;
|
||||
using System.Diagnostics;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace NadekoBot.Services.Impl
|
||||
namespace NadekoBot.Core.Services.Impl
|
||||
{
|
||||
public class YtdlOperation : IDisposable
|
||||
{
|
||||
|
Reference in New Issue
Block a user