approveflow/app/console/command/user/user.go

18 lines
275 B
Go
Raw Normal View History

2024-11-14 17:02:41 +08:00
package user
import (
"fmt"
"github.com/Superdanda/hade/framework/cobra"
)
var UserCommand = &cobra.Command{
Use: "user",
Short: "user",
RunE: func(c *cobra.Command, args []string) error {
container := c.GetContainer()
fmt.Println(container)
return nil
},
}