This repository has been archived on 2024-12-22. You can view files and clone it, but cannot push or open issues or pull requests.
elliebot/src/EllieBot/_common/IPlaceholderProvider.cs

7 lines
163 B
C#
Raw Normal View History

2024-06-26 07:44:07 +00:00
#nullable disable
namespace EllieBot.Common;
public interface IPlaceholderProvider
{
public IEnumerable<(string Name, Func<string> Func)> GetPlaceholders();
}