diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8d766bf --- /dev/null +++ b/.gitignore @@ -0,0 +1,22 @@ +# Binaries for programs and plugins +*.exe +*.exe~ +*.dll +*.so +*.dylib + +# Test binary, built with `go test -c` +*.test + +# Output of the go coverage tool, specifically when used with LiteIDE +*.out + +# Dependency directories (remove the comment below to include it) +# vendor/ + +# Go workspace file +go.work +go.work.sum + +# env file +.env \ No newline at end of file diff --git a/main.go b/main.go deleted file mode 100644 index a98faae..0000000 --- a/main.go +++ /dev/null @@ -1,48 +0,0 @@ -package main - -import ( - "log" - "os" - - sbhpfv1 "git.zervo.org/FLUX/GoSBHPF/SBHPFv1" -) - -func main() { - file, err := os.Create("test.bin") - if err != nil { - log.Fatal(err) - } - defer file.Close() - - prop_a := sbhpfv1.Property{ - Key: "active", - Type: sbhpfv1.TypeBool, - Value: true, - } - - prop_b := sbhpfv1.Property{ - Key: "level", - Type: sbhpfv1.TypeInt16, - Value: int16(27), - } - - child_node := sbhpfv1.Node{ - Name: "inventory", - } - - node := sbhpfv1.Node{ - Name: "player", - Properties: []sbhpfv1.Property{ - prop_a, - prop_b, - }, - Children: []*sbhpfv1.Node{ - &child_node, - }, - } - - err = sbhpfv1.SerializeNode(file, &node) - if err != nil { - log.Fatal(err) - } -} diff --git a/test.bin b/test.bin deleted file mode 100644 index a08f0c5..0000000 Binary files a/test.bin and /dev/null differ