File tree 3 files changed +43
-0
lines changed
3 files changed +43
-0
lines changed Original file line number Diff line number Diff line change
1
+ module github.com/scipipe/scipipe
2
+
3
+ go 1.22.1
4
+
5
+ require github.com/flowbase/flowbase v0.2.0
Original file line number Diff line number Diff line change
1
+ github.com/flowbase/flowbase v0.2.0 h1:jrzZa4y1Js3gwmDGwLfZgWF910UUhbKKFH+8SjJBSCc =
2
+ github.com/flowbase/flowbase v0.2.0 /go.mod h1:TakNfAyVNvlK7AG/Zu65lrY3zZmWlnGLes9o4pG9bDM =
Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments