1 package deploy 2 3 import ( 4 "context" 5 ) 6 7 type Client interface { 8 // Deploy resources from a devfile located in path, for the specified appName. 9 // The filesystem specified is used to download and store the Dockerfiles needed to build the necessary container images, 10 // in case such Dockerfiles are referenced as remote URLs in the Devfile. 11 Deploy(ctx context.Context) error 12 } 13