1 Commits
Author SHA1 Message Date
esilva 0d0567c070 rename project 2026-07-08 22:54:56 +01:00
5 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -9,8 +9,8 @@ import (
// rootCmd represents the base command when called without any subcommands
var rootCmd = &cobra.Command{
Use: "bngmock",
Short: "CLI for a BeamNG OG mockserver",
Use: "telemetrymockserver",
Short: "CLI for mocking and recording data from different sources. Primarily for simracing",
Long: ``,
}
+1 -1
View File
@@ -4,7 +4,7 @@ import (
"context"
"fmt"
"github.com/ESilva15/BeamNGMockOg/mockserver"
"github.com/ESilva15/TelemetryMockserver/mockserver"
"github.com/spf13/cobra"
)
+1 -1
View File
@@ -4,7 +4,7 @@ import (
"context"
"fmt"
"github.com/ESilva15/BeamNGMockOg/mockserver"
"github.com/ESilva15/TelemetryMockserver/mockserver"
"github.com/spf13/cobra"
)
+1 -1
View File
@@ -1,4 +1,4 @@
module github.com/ESilva15/BeamNGMockOg
module github.com/ESilva15/TelemetryMockserver
go 1.23.2
+1 -1
View File
@@ -1,6 +1,6 @@
package main
import "github.com/ESilva15/BeamNGMockOg/cmd"
import "github.com/ESilva15/TelemetryMockserver/cmd"
func main() {
cmd.Execute()