Files
nadekobot/src/NadekoBot/Common/IPlaceholderProvider.cs

10 lines
216 B
C#

using System;
using System.Collections.Generic;
namespace NadekoBot.Common
{
public interface IPlaceholderProvider
{
public IEnumerable<(string Name, Func<string> Func)> GetPlaceholders();
}
}