Files
char/cmd/char/limitedroot.go
2022-11-02 22:10:15 +01:00

14 lines
151 B
Go

package char
import (
"github.com/spf13/cobra"
)
func NewLimitedCharCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "char",
}
return cmd
}