Remove worker mode

This commit is contained in:
ErickSkrauch
2023-12-15 03:42:38 +01:00
parent 20ba78953b
commit e568d4cf91
11 changed files with 2 additions and 569 deletions

View File

@@ -1,17 +0,0 @@
package cmd
import (
"github.com/spf13/cobra"
)
var workerCmd = &cobra.Command{
Use: "worker",
Short: "Starts HTTP handler for the Mojang usernames to UUIDs worker",
Run: func(cmd *cobra.Command, args []string) {
startServer([]string{"worker"})
},
}
func init() {
RootCmd.AddCommand(workerCmd)
}