Files
Govor/Govor.ConsoleClient/Services/Interfaces/IInputPipeline.cs
T
2025-07-19 23:18:08 +07:00

6 lines
129 B
C#

namespace Govor.ConsoleClient.Services.Interfaces;
public interface IInputPipeline
{
Task ProcessInputAsync(string input);
}