github.com/MetalBlockchain/metalgo@v1.11.9/vms/example/xsvm/cmd/chain/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 chain
     5  
     6  import (
     7  	"github.com/spf13/cobra"
     8  
     9  	"github.com/MetalBlockchain/metalgo/vms/example/xsvm/cmd/chain/create"
    10  	"github.com/MetalBlockchain/metalgo/vms/example/xsvm/cmd/chain/genesis"
    11  )
    12  
    13  func Command() *cobra.Command {
    14  	c := &cobra.Command{
    15  		Use:   "chain",
    16  		Short: "Manages XS chains",
    17  	}
    18  	c.AddCommand(
    19  		create.Command(),
    20  		genesis.Command(),
    21  	)
    22  	return c
    23  }