MCPcopy
hub / github.com/raviqqe/muffet / Run

Method Run

command.go:26–33  ·  view source on GitHub ↗
(args []string)

Source from the content-addressed store, hash-verified

24}
25
26func (c *command) Run(args []string) bool {
27 ok, err := c.runWithError(args)
28 if err != nil {
29 c.printError(err)
30 }
31
32 return ok
33}
34
35func (c *command) runWithError(ss []string) (bool, error) {
36 args, err := getArguments(ss)

Calls 2

runWithErrorMethod · 0.95
printErrorMethod · 0.95