mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-11-14 12:15:18 +00:00
26 lines
446 B
Go
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)
|
|
}
|