feat: Add Gin framework to various packages, introducing new server structure with separate service registries for general nodes, map nodes, and reduce nodes.

This commit is contained in:
2025-02-11 14:20:00 +01:00
parent de07752466
commit 12e6c65727
13 changed files with 211 additions and 4 deletions

19
cmd/map_node.go Normal file
View File

@@ -0,0 +1,19 @@
package cmd
import (
mapnode "github.com/alexohneander/flotte/pkg/map-node"
"github.com/spf13/cobra"
)
func init() {
rootCmd.AddCommand(mapnodeCmd)
}
var mapnodeCmd = &cobra.Command{
Use: "map-node",
Short: "Start a map node",
Long: `Long`,
Run: func(cmd *cobra.Command, args []string) {
mapnode.Start()
},
}