github.com/taubyte/tau-cli@v0.1.13-0.20240326000942-487f0d57edfc/cli/common/unimplemented.go (about)

     1  package common
     2  
     3  import "github.com/urfave/cli/v2"
     4  
     5  var _ Basic = UnimplementedBasic{}
     6  var NotImplemented Command = nil
     7  
     8  type UnimplementedBasic struct{}
     9  
    10  func (UnimplementedBasic) New() Command                   { return NotImplemented }
    11  func (UnimplementedBasic) Edit() Command                  { return NotImplemented }
    12  func (UnimplementedBasic) Delete() Command                { return NotImplemented }
    13  func (UnimplementedBasic) Query() Command                 { return NotImplemented }
    14  func (UnimplementedBasic) List() Command                  { return NotImplemented }
    15  func (UnimplementedBasic) Select() Command                { return NotImplemented }
    16  func (UnimplementedBasic) Clone() Command                 { return NotImplemented }
    17  func (UnimplementedBasic) Push() Command                  { return NotImplemented }
    18  func (UnimplementedBasic) Pull() Command                  { return NotImplemented }
    19  func (UnimplementedBasic) Checkout() Command              { return NotImplemented }
    20  func (UnimplementedBasic) Import() Command                { return NotImplemented }
    21  func (UnimplementedBasic) Base() (*cli.Command, []Option) { return nil, nil }