2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 13:47:15 +08:00
Files
panel/internal/biz/container_compose.go
2025-03-20 02:49:18 +08:00

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
}