mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 17:58:26 -04:00
One of the last major cleanups. All NadekoBot.Core.* namespaces renamed to NadekoBot.*
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
@@ -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
|
||||
{
|
||||
|
@@ -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
|
||||
{
|
||||
|
@@ -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
|
||||
{
|
||||
|
@@ -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
|
||||
{
|
||||
|
@@ -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
|
||||
{
|
||||
|
@@ -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
|
||||
{
|
||||
|
@@ -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
|
||||
{
|
||||
|
@@ -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;
|
||||
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
{
|
||||
|
@@ -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
|
||||
{
|
||||
|
@@ -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
|
||||
{
|
||||
|
@@ -1,7 +0,0 @@
|
||||
namespace NadekoBot.Core.Services.Impl
|
||||
{
|
||||
public class SyncPreconditionService
|
||||
{
|
||||
|
||||
}
|
||||
}
|
@@ -7,7 +7,7 @@ using System.Threading.Tasks;
|
||||
using NadekoBot.Extensions;
|
||||
using Serilog;
|
||||
|
||||
namespace NadekoBot.Core.Services.Impl
|
||||
namespace NadekoBot.Services
|
||||
{
|
||||
public class YtdlOperation
|
||||
{
|
||||
|
Reference in New Issue
Block a user