github.com/taubyte/tau-cli@v0.1.13-0.20240326000942-487f0d57edfc/lib/repository/types.go (about) 1 package repositoryLib 2 3 import "github.com/taubyte/tau-cli/singletons/templates" 4 5 type RepositoryType = string 6 7 const ( 8 WebsiteRepositoryType RepositoryType = "website" 9 LibraryRepositoryType RepositoryType = "library" 10 ) 11 12 type Info struct { 13 FullName string 14 ID string 15 16 Type RepositoryType 17 18 DoClone bool 19 } 20 21 type InfoTemplate struct { 22 RepositoryName string 23 Info templates.TemplateInfo 24 Private bool 25 }