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

@@ -4,7 +4,7 @@ type PortProtocol string
const (
TCP PortProtocol = "TCP"
UDP = "UDP"
UDP PortProtocol = "UDP"
)
type Port struct {
@@ -14,6 +14,7 @@ type Port struct {
}
type Image struct {
Id string
Registry string
Tag string
}