2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 11:27:17 +08:00
Files
panel/internal/biz/container_image.go
2024-10-27 18:12:21 +08:00

14 lines
274 B
Go

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