This repository has been archived on 2024-12-22. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
elliebot/src/EllieBot/Modules/Gambling/CurrencyProvider.cs
2024-09-21 00:44:21 +12:00

16 lines
No EOL
360 B
C#

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