mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 05:31:44 +08:00
14 lines
298 B
Go
14 lines
298 B
Go
package biz
|
|
|
|
import (
|
|
"github.com/tnb-labs/panel/internal/http/request"
|
|
"github.com/tnb-labs/panel/pkg/types"
|
|
)
|
|
|
|
type ContainerNetworkRepo interface {
|
|
List() ([]types.ContainerNetwork, error)
|
|
Create(req *request.ContainerNetworkCreate) (string, error)
|
|
Remove(id string) error
|
|
Prune() error
|
|
}
|