mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 09:48:26 -04:00
10 lines
216 B
C#
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();
|
|
}
|
|
} |