ceremonyclient/client/cmd/mutualReceive.go
2024-10-13 18:37:19 -07:00

26 lines
446 B
Go

package cmd
import (
"fmt"
"github.com/spf13/cobra"
)
var mutualReceiveCmd = &cobra.Command{
Use: "mutual-receive",
Short: "Initiates a mutual receive",
Long: `Initiates a mutual receive:
mutual-receive <ExpectedAmount>
ExpectedAmount - the amount expected in the transfer
`,
Run: func(cmd *cobra.Command, args []string) {
fmt.Println("command not yet available")
},
}
func init() {
tokenCmd.AddCommand(mutualReceiveCmd)
}