This commit is contained in:
2025-05-24 16:59:22 -04:00
parent 7bdd323056
commit 2c8043db4f
10 changed files with 22 additions and 4 deletions

View File

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