initial attempt at building Masonry

This commit is contained in:
2025-02-12 22:14:44 -07:00
commit e34da045bc
12 changed files with 187 additions and 0 deletions

20
templates/cli/commands.go Normal file
View File

@ -0,0 +1,20 @@
package main
import (
"fmt"
"github.com/urfave/cli/v2"
)
func exampleCmd() *cli.Command {
return &cli.Command{
Name: "example",
Aliases: []string{"e"},
Usage: "Run an example command",
Action: func(c *cli.Context) error {
fmt.Println("This is an example command")
return nil
},
}
}
// add commands here