mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 10:17:17 +08:00
14 lines
291 B
Go
14 lines
291 B
Go
package biz
|
|
|
|
import (
|
|
"github.com/TheTNB/panel/internal/http/request"
|
|
"github.com/TheTNB/panel/pkg/types"
|
|
)
|
|
|
|
type ContainerVolumeRepo interface {
|
|
List() ([]types.ContainerVolume, error)
|
|
Create(req *request.ContainerVolumeCreate) (string, error)
|
|
Remove(id string) error
|
|
Prune() error
|
|
}
|