Changed some namespaces, work on packages

This commit is contained in:
Master Kwoth
2017-10-13 06:14:54 +02:00
parent e434de5abb
commit 90e71a3a30
295 changed files with 6140 additions and 6111 deletions

View File

@ -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
{

View File

@ -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
{

View File

@ -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
{

View File

@ -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
{

View File

@ -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
{

View File

@ -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
{

View File

@ -1,7 +1,7 @@
using StackExchange.Redis;
using System.Threading.Tasks;
namespace NadekoBot.Services.Impl
namespace NadekoBot.Core.Services.Impl
{
public class RedisCache : IDataCache
{

View File

@ -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
{

View File

@ -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
{

View File

@ -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
{

View File

@ -1,4 +1,4 @@
namespace NadekoBot.Services.Impl
namespace NadekoBot.Core.Services.Impl
{
public class SyncPreconditionService
{

View File

@ -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
{