We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99de29b commit 0fe7d46Copy full SHA for 0fe7d46
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