mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 01:08:26 -04:00
10 lines
221 B
C#
10 lines
221 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace NadekoBot.Core.Common
|
|
{
|
|
public interface IPlaceholderProvider
|
|
{
|
|
public IEnumerable<(string Name, Func<string> Func)> GetPlaceholders();
|
|
}
|
|
} |