This commit is contained in:
2025-04-05 23:37:29 +03:00
parent 03fee43b32
commit fce36b701f
7 changed files with 857 additions and 27 deletions

View File

@@ -22,6 +22,7 @@ type Port struct {
}
type Image struct {
Id string
Registry string
Tag string
Command string
@@ -30,7 +31,7 @@ type Image struct {
}
type InstanceManager interface {
//General
// General
// Read Only
GetImage(ctx context.Context, imageId string) (*Image, error)
ListImages(ctx context.Context) ([]Image, error)