/
tomefile
/
lib-parser
Обзор
Документация
Войти
/
tomefile
/
lib-parser
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
main
node_pipe.go
16 строк
260 B
BubbleFish
refactor: v2 Nodes
05 дек 2025, 12:39
Не верифицирован
05 дек 2025, 12:39
ca3b716
Код
Авторство
О чём код?
package libparser type NodePipe struct { Source Node Dest Node NodeContext } func (node *NodePipe) Context() NodeContext { return node.NodeContext } func (node *NodePipe) String() string { return node.Source.String() + " | " + node.Dest.String() }