feat: added 'profile' and 'plugins' flags

This commit is contained in:
David Allen 2025-08-19 21:32:45 -06:00
parent 97fa0a1062
commit 4d33b12fe0
Signed by: towk
GPG key ID: 0430CDBE22619155
3 changed files with 16 additions and 0 deletions

11
cmd/plugin.go Normal file
View file

@ -0,0 +1,11 @@
package cmd
import "github.com/spf13/cobra"
var pluginCmd = &cobra.Command{}
var pluginCompileCmd = &cobra.Command{}
func init() {
rootCmd.AddCommand(pluginCmd, pluginCompileCmd)
}