forked from EllieBotDevs/elliebot
7 lines
No EOL
163 B
C#
7 lines
No EOL
163 B
C#
#nullable disable
|
|
namespace EllieBot.Common;
|
|
|
|
public interface IPlaceholderProvider
|
|
{
|
|
public IEnumerable<(string Name, Func<string> Func)> GetPlaceholders();
|
|
} |