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