ceremonyclient/client/cmd/token/mint.go
2025-04-07 10:12:48 -08:00

15 lines
185 B
Go

package token
import (
"github.com/spf13/cobra"
)
var mintCmd = &cobra.Command{
Use: "mint",
Short: "Performs a mint operation",
}
func init() {
TokenCmd.AddCommand(mintCmd)
}