One of the last major cleanups. All NadekoBot.Core.* namespaces renamed to NadekoBot.*

This commit is contained in:
Kwoth
2021-06-20 13:03:00 +02:00
parent 44fdd4ff23
commit 49f9b96755
451 changed files with 19253 additions and 19287 deletions

View File

@@ -6,10 +6,9 @@ using System;
using System.Collections.Immutable;
using System.IO;
using System.Linq;
using NadekoBot.Core.Common;
using Serilog;
namespace NadekoBot.Core.Services.Impl
namespace NadekoBot.Services
{
public class BotCredentials : IBotCredentials
{

View File

@@ -1,7 +1,7 @@
using Discord;
using Discord.WebSocket;
using NadekoBot.Core.Services.Database;
using NadekoBot.Core.Services.Database.Models;
using NadekoBot.Services.Database;
using NadekoBot.Services.Database.Models;
using NadekoBot.Extensions;
using System;
using System.Collections.Generic;
@@ -10,7 +10,7 @@ using System.Threading.Tasks;
using NadekoBot.Db;
using NadekoBot.Modules.Gambling.Services;
namespace NadekoBot.Core.Services
namespace NadekoBot.Services
{
public class CurrencyService : ICurrencyService
{

View File

@@ -3,7 +3,7 @@ using System;
using System.Collections.Generic;
using System.IO;
namespace NadekoBot.Core.Services.Impl
namespace NadekoBot.Services
{
public class FontProvider : INService
{

View File

@@ -16,7 +16,7 @@ using System.Text.RegularExpressions;
using System.Threading.Tasks;
using Serilog;
namespace NadekoBot.Core.Services.Impl
namespace NadekoBot.Services
{
public class GoogleApiService : IGoogleApiService
{

View File

@@ -1,5 +1,5 @@
using NadekoBot.Core.Common;
using NadekoBot.Core.Services.Common;
using NadekoBot.Common;
using NadekoBot.Services.Common;
using NadekoBot.Extensions;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
@@ -13,7 +13,7 @@ using System.Net.Http;
using System.Threading.Tasks;
using Serilog;
namespace NadekoBot.Core.Services.Impl
namespace NadekoBot.Services
{
public sealed class RedisImagesCache : IImageCache
{

View File

@@ -9,7 +9,7 @@ using System.IO;
using NadekoBot.Db;
using NadekoBot.Modules.Administration;
namespace NadekoBot.Core.Services.Impl
namespace NadekoBot.Services
{
public class Localization : ILocalization
{

View File

@@ -6,7 +6,7 @@ using System.Linq;
using System.Net;
using System.Threading.Tasks;
namespace NadekoBot.Core.Services.Impl
namespace NadekoBot.Services
{
public class RedisCache : IDataCache
{

View File

@@ -1,4 +1,4 @@
using NadekoBot.Core.Common.Pokemon;
using NadekoBot.Common.Pokemon;
using NadekoBot.Extensions;
using NadekoBot.Modules.Games.Common.Trivia;
using Newtonsoft.Json;
@@ -9,7 +9,7 @@ using System.IO;
using System.Linq;
using Serilog;
namespace NadekoBot.Core.Services.Impl
namespace NadekoBot.Services
{
public class RedisLocalDataCache : ILocalDataCache
{

View File

@@ -7,7 +7,7 @@ using Discord.WebSocket;
using Grpc.Core;
using NadekoBot.Common.ModuleBehaviors;
using NadekoBot.Coordinator;
using NadekoBot.Core.Services;
using NadekoBot.Services;
using NadekoBot.Extensions;
using Serilog;

View File

@@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Diagnostics;
using System.Threading.Tasks;
using Discord.WebSocket;
using NadekoBot.Core.Services;
using NadekoBot.Services;
using Serilog;
namespace NadekoBot.Services

View File

@@ -4,7 +4,7 @@ using System.Linq;
using System.Net.Http;
using System.Threading.Tasks;
namespace NadekoBot.Core.Services.Impl
namespace NadekoBot.Services
{
public class SoundCloudApiService : INService
{

View File

@@ -4,7 +4,7 @@ using System.Collections.Immutable;
using System.Linq;
using System.Collections;
namespace NadekoBot.Core.Services.Impl
namespace NadekoBot.Services
{
public class StartingGuildsService : IEnumerable<ulong>, INService
{

View File

@@ -10,7 +10,7 @@ using System.Threading;
using System.Threading.Tasks;
using Serilog;
namespace NadekoBot.Core.Services.Impl
namespace NadekoBot.Services
{
public class StatsService : IStatsService
{

View File

@@ -1,7 +0,0 @@
namespace NadekoBot.Core.Services.Impl
{
public class SyncPreconditionService
{
}
}

View File

@@ -7,7 +7,7 @@ using System.Threading.Tasks;
using NadekoBot.Extensions;
using Serilog;
namespace NadekoBot.Core.Services.Impl
namespace NadekoBot.Services
{
public class YtdlOperation
{