We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f2d86d commit 1655059Copy full SHA for 1655059
1 file changed
cmd/src/mcp.go
@@ -7,13 +7,9 @@ import (
7
8
func init() {
9
flagSet := flag.NewFlagSet("mcp", flag.ExitOnError)
10
- handler := func(args []string) error {
11
- return mcpMain(args)
12
- }
13
-
14
commands = append(commands, &command{
15
flagSet: flagSet,
16
- handler: handler,
+ handler: mcpMain,
17
})
18
}
19
func mcpMain(args []string) error {
0 commit comments