mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 13:47:15 +08:00
11 lines
236 B
Go
11 lines
236 B
Go
package biz
|
|
|
|
type ContainerComposeRepo interface {
|
|
List() ([]string, error)
|
|
Get(name string) (string, error)
|
|
Create(name, compose string) error
|
|
Up(name string, force bool) error
|
|
Down(name string) error
|
|
Remove(name string) error
|
|
}
|