mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-11-14 12:15:18 +00:00
26 lines
424 B
Go
26 lines
424 B
Go
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var acceptCmd = &cobra.Command{
|
|
Use: "accept",
|
|
Short: "Accepts a pending transfer",
|
|
Long: `Accepts a pending transfer:
|
|
|
|
accept <PendingTransaction>
|
|
|
|
PendingTransaction - the address of the pending transfer
|
|
`,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
fmt.Println("command not yet available")
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
tokenCmd.AddCommand(acceptCmd)
|
|
}
|