mirror of
https://github.com/elyby/chrly.git
synced 2024-11-17 02:32:59 +05:30
3f81a0c18a
Implemented graceful server shutdown Extract records manipulating API into separate handlers group
18 lines
309 B
Go
18 lines
309 B
Go
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)
|
|
}
|