github.com/gernest/nezuko@v0.1.2/internal/modcmd/mod.go (about)

     1  // Copyright 2018 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  // Package modcmd implements the ``z mod'' command.
     6  package modcmd
     7  
     8  import "github.com/gernest/nezuko/internal/base"
     9  
    10  var CmdMod = &base.Command{
    11  	UsageLine: "z mod",
    12  	Short:     "module maintenance",
    13  	Long:      `Z mod provides access to operations on modules.`,
    14  
    15  	Commands: []*base.Command{
    16  		cmdDownload,
    17  		cmdEdit,
    18  		cmdGraph,
    19  		cmdInit,
    20  		cmdTidy,
    21  		cmdVendor,
    22  		cmdVerify,
    23  	},
    24  }