14 lines
390 B
C#
14 lines
390 B
C#
using TelegramBotBase.Base;
|
|
|
|
namespace TelegramBotBase.Experiments.ActionManager.Actions
|
|
{
|
|
public static class EndsWithAction_Extensions
|
|
{
|
|
public static void AddEndsWithAction(this ExternalActionManager manager, string value, Func<String, UpdateResult, MessageResult, Task> action)
|
|
{
|
|
manager.Add(new EndsWithAction(value, action));
|
|
}
|
|
}
|
|
|
|
}
|