Files
nadekobot/src/NadekoBot/Modules/Gambling/CurrencyProvider.cs
2024-04-27 16:03:48 +00:00

16 lines
362 B
C#

using NadekoBot.Modules.Gambling.Services;
namespace NadekoBot.Modules.Gambling;
public sealed class CurrencyProvider : ICurrencyProvider, INService
{
private readonly GamblingConfigService _cs;
public CurrencyProvider(GamblingConfigService cs)
{
_cs = cs;
}
public string GetCurrencySign()
=> _cs.Data.Currency.Sign;
}