github.com/taubyte/tau-cli@v0.1.13-0.20240326000942-487f0d57edfc/lib/dream/types.go (about) 1 package dreamLib 2 3 import ( 4 "github.com/taubyte/go-project-schema/project" 5 "github.com/taubyte/tau-cli/singletons/config" 6 ) 7 8 type internalJob func() error 9 10 type ProdProject struct { 11 Project project.Project 12 Profile config.Profile 13 } 14 15 type CompileForDFunc struct { 16 ProjectId string 17 ApplicationId string 18 ResourceId string 19 Branch string 20 Call string 21 Path string 22 } 23 24 type CompileForRepository struct { 25 ProjectId string 26 ApplicationId string 27 ResourceId string 28 Branch string 29 Path string 30 }