github.com/taubyte/tau-cli@v0.1.13-0.20240326000942-487f0d57edfc/cli/commands/resources/builds/base.go (about)

     1  package builds
     2  
     3  import (
     4  	"github.com/taubyte/tau-cli/cli/common"
     5  	"github.com/urfave/cli/v2"
     6  )
     7  
     8  func (link) Base() (*cli.Command, []common.Option) {
     9  	return common.Base(&cli.Command{
    10  		Name:    "builds",
    11  		Usage:   "lists jobs within a time range (default: 7 days)",
    12  		Aliases: []string{"jobs"},
    13  	})
    14  }