Reorganizing module and submodule folders

This commit is contained in:
Kwoth
2022-01-01 16:25:00 +01:00
parent 9b4eb21321
commit 9c590668df
69 changed files with 17 additions and 41 deletions

View File

@@ -1,8 +0,0 @@
#nullable disable
namespace NadekoBot.Modules.Gambling.Common;
public class Payout
{
public string User { get; set; }
public int Amount { get; set; }
}

View File

@@ -1,5 +1,4 @@
#nullable disable
using NadekoBot.Modules.Administration.Services;
using NadekoBot.Modules.Gambling.Common;
using NadekoBot.Modules.Gambling.Services;

View File

@@ -1,11 +0,0 @@
#nullable disable
using Discord.Interactions;
namespace NadekoBot.Modules.Gambling;
public class TestGamblingService : InteractionModuleBase
{
[SlashCommand("test", "uwu")]
public async Task Test(string input1, int input2)
=> await RespondAsync("Bravo " + input1 + input2);
}