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

     1  package smartops
     2  
     3  import (
     4  	"github.com/taubyte/tau-cli/cli/common"
     5  )
     6  
     7  type link struct {
     8  	common.UnimplementedBasic
     9  }
    10  
    11  // New is called in tau/cli/new.go to attach the relative commands
    12  // to their parents, i.e `new` => `new smartops`
    13  func New() common.Basic {
    14  	return link{}
    15  }