Files
bellande_robotic_system_ope…/example/example_go/example_go.go
2025-05-24 19:00:57 -04:00

23 lines
312 B
Go

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()
}