add initial files
This commit is contained in:
commit
6233590bb4
8 changed files with 307 additions and 0 deletions
11
internal/nodes/nodes.go
Normal file
11
internal/nodes/nodes.go
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
package nodes
|
||||
|
||||
import "errors"
|
||||
|
||||
var (
|
||||
ErrExists = errors.New("node exists")
|
||||
)
|
||||
|
||||
type Node struct {
|
||||
ID string
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue