example packages

This commit is contained in:
2025-05-24 19:00:57 -04:00
parent 2c8043db4f
commit a5b75ddfd5
14 changed files with 44 additions and 109 deletions

View File

@@ -0,0 +1,22 @@
package main
import (
"fmt"
"time"
"common_msgs"
)
type Example_go struct{}
func (n *Example_go) Run() {
for {
// TODO: Implement node logic
fmt.Println("Running example_go")
time.Sleep(1 * time.Second)
}
}
func main() {
node := &Example_go{}
node.Run()
}

View File

@@ -0,0 +1,4 @@
dependencies:
- common_msgs
language: go
name: ../exampleexample_go