14 lines
378 B
C#
14 lines
378 B
C#
using TelegramBotBase.Base;
|
|
|
|
namespace TelegramBotBase.Experiments.ActionManager.Actions
|
|
{
|
|
public static class GuidAction_Extensions
|
|
{
|
|
|
|
public static void AddGuidAction(this ExternalActionManager manager, string method, Func<Guid, UpdateResult, MessageResult, Task> action)
|
|
{
|
|
manager.Add(new GuidAction(method, action));
|
|
}
|
|
}
|
|
}
|