This commit is contained in:
altafan
2019-03-28 21:23:13 +01:00
parent 28ce184960
commit f0390b2d88
16 changed files with 855 additions and 17 deletions

7
cli/builder/main.go Normal file
View File

@@ -0,0 +1,7 @@
package builder
type ComposeBuilder interface {
New(rootPath string)
Build() error
Delete() error
}