Skip to content

Commit c0e6640

Browse files
committed
Add code
1 parent db64920 commit c0e6640

File tree

3 files changed

+43
-0
lines changed

3 files changed

+43
-0
lines changed

go.mod

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module github.com/scipipe/scipipe
2+
3+
go 1.22.1
4+
5+
require github.com/flowbase/flowbase v0.2.0

go.sum

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
github.com/flowbase/flowbase v0.2.0 h1:jrzZa4y1Js3gwmDGwLfZgWF910UUhbKKFH+8SjJBSCc=
2+
github.com/flowbase/flowbase v0.2.0/go.mod h1:TakNfAyVNvlK7AG/Zu65lrY3zZmWlnGLes9o4pG9bDM=

main.go

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
package main
2+
3+
import (
4+
"github.com/flowbase/flowbase"
5+
)
6+
7+
type PipelineNode interface {
8+
flowbase.Node
9+
// Things to add to flowbase.Node
10+
UpstreamProcs() []PipelineNode
11+
DownstreamProcs() []PipelineNode
12+
13+
// New things specific to PipelineNode
14+
StageInputs() error
15+
OutputsExist() (bool, error)
16+
Persist() error
17+
}
18+
19+
type PipelinePacket interface {
20+
flowbase.Packet
21+
ID() []string
22+
GetURI() []string
23+
GetRaw() ([]byte, err)
24+
GetScanner()
25+
GetTextScanner()
26+
Tags() [string]string
27+
GetFlowContext() FlowContext
28+
}
29+
30+
func main() {
31+
net := flowbase.NewNetwork()
32+
33+
net.AddProc()
34+
35+
net.Run()
36+
}

0 commit comments

Comments
 (0)