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
2024-06-26 19:44:07 +12:00

7 lines
No EOL
163 B
C#

#nullable disable
namespace EllieBot.Common;
public interface IPlaceholderProvider
{
public IEnumerable<(string Name, Func<string> Func)> GetPlaceholders();
}