feat: Internalize package reorganization, update run commands for each service

This commit is contained in:
2025-02-11 14:23:49 +01:00
parent 12e6c65727
commit eec969fc75
7 changed files with 5 additions and 5 deletions

13
internal/map-node/node.go Normal file
View File

@@ -0,0 +1,13 @@
package mapnode
import "github.com/gin-gonic/gin"
func Start() {
router := gin.Default()
router.GET("/ping", func(c *gin.Context) {
c.JSON(200, gin.H{
"message": "pong",
})
})
router.Run("localhost:4000") // listen and serve on 0.0.0.0:4000
}