package biz import ( "github.com/acepanel/panel/internal/http/request" "github.com/acepanel/panel/pkg/types" ) type ContainerImageRepo interface { List() ([]types.ContainerImage, error) Pull(req *request.ContainerImagePull) error Remove(id string) error Prune() error }