MCPcopy
hub / github.com/puma/puma-dev / command

Function command

cmd/puma-dev/command.go:14–21  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

12)
13
14func command() error {
15 switch flag.Arg(0) {
16 case "link":
17 return link()
18 default:
19 return fmt.Errorf("unknown command: %s", flag.Arg(0))
20 }
21}
22
23func link() error {
24 fs := flag.NewFlagSet("link", flag.ExitOnError)

Calls 1

linkFunction · 0.85