hermes-client/Chat/Commands/ICommandFactory.cs

9 lines
179 B
C#

using static TwitchChatTTS.Chat.Commands.TTSCommands;
namespace TwitchChatTTS.Chat.Commands
{
public interface ICommandFactory
{
ICommandSelector Build();
}
}