github.com/taubyte/tau-cli@v0.1.13-0.20240326000942-487f0d57edfc/cli/commands/resources/function/types.go (about) 1 package function 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 function` 13 func New() common.Basic { 14 return link{} 15 }