add initial files

This commit is contained in:
David Allen 2024-11-17 13:47:37 -07:00
commit 6233590bb4
Signed by: towk
GPG key ID: 793B2924A49B3A3F
8 changed files with 307 additions and 0 deletions

11
internal/nodes/nodes.go Normal file
View file

@ -0,0 +1,11 @@
package nodes
import "errors"
var (
ErrExists = errors.New("node exists")
)
type Node struct {
ID string
}