mirror of
https://github.com/aljazceru/nigiri.git
synced 2026-02-11 09:34:27 +01:00
8 lines
104 B
Go
8 lines
104 B
Go
package builder
|
|
|
|
type ComposeBuilder interface {
|
|
New(rootPath string)
|
|
Build() error
|
|
Delete() error
|
|
}
|