Continued scaffolding and interface definitions
This commit is contained in:
16
services/data_service/internal/node/node.go
Normal file
16
services/data_service/internal/node/node.go
Normal file
@@ -0,0 +1,16 @@
|
||||
package node
|
||||
|
||||
type Type string
|
||||
|
||||
const (
|
||||
Source Type = "source"
|
||||
Processor Type = "processor"
|
||||
Sink Type = "sink"
|
||||
)
|
||||
|
||||
type Template struct {
|
||||
Kind Type
|
||||
Type string
|
||||
Version string
|
||||
Config string
|
||||
}
|
||||
Reference in New Issue
Block a user