mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 06:47:20 +08:00
14 lines
278 B
Go
14 lines
278 B
Go
package biz
|
|
|
|
import (
|
|
"github.com/tnb-labs/panel/internal/http/request"
|
|
"github.com/tnb-labs/panel/pkg/types"
|
|
)
|
|
|
|
type ContainerImageRepo interface {
|
|
List() ([]types.ContainerImage, error)
|
|
Pull(req *request.ContainerImagePull) error
|
|
Remove(id string) error
|
|
Prune() error
|
|
}
|