hermes-client/Chat/Commands/ICommandFactory.cs

9 lines
179 B
C#
Raw Normal View History

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