github.com/MetalBlockchain/metalgo@v1.11.9/vms/example/xsvm/cmd/issue/cmd.go (about)

     1  // Copyright (C) 2019-2024, Ava Labs, Inc. All rights reserved.
     2  // See the file LICENSE for licensing terms.
     3  
     4  package issue
     5  
     6  import (
     7  	"github.com/spf13/cobra"
     8  
     9  	"github.com/MetalBlockchain/metalgo/vms/example/xsvm/cmd/issue/export"
    10  	"github.com/MetalBlockchain/metalgo/vms/example/xsvm/cmd/issue/importtx"
    11  	"github.com/MetalBlockchain/metalgo/vms/example/xsvm/cmd/issue/transfer"
    12  )
    13  
    14  func Command() *cobra.Command {
    15  	c := &cobra.Command{
    16  		Use:   "issue",
    17  		Short: "Issues transactions",
    18  	}
    19  	c.AddCommand(
    20  		transfer.Command(),
    21  		export.Command(),
    22  		importtx.Command(),
    23  	)
    24  	return c
    25  }