/
krasninja
/
querycat
Обзор
Документация
Войти
/
krasninja
/
querycat
Код
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/QueryCat.Backend/Formatters/TextTableFormatter.cs
17 строк
435 B
Ivan Kozhin
Create Core module, move main classes there
24 авг 2023, 19:38
24 авг 2023, 19:38
4588519
Код
Авторство
О чём код?
using QueryCat.Backend.Core.Data; namespace QueryCat.Backend.Formatters; /// <summary> /// Simple text table formatter. /// </summary> public class TextTableFormatter : IRowsFormatter { /// <inheritdoc /> public IRowsInput OpenInput(Stream input, string? key = null) => new TextTableInput(input, key); /// <inheritdoc /> public IRowsOutput OpenOutput(Stream output) => new TextTableOutput(output); }