feat: add edgio applications v7 deployer

This commit is contained in:
Fu Diwei
2025-01-15 22:13:28 +08:00
parent dd236b925d
commit 974c320925
32 changed files with 1195 additions and 37 deletions

View File

@@ -0,0 +1,18 @@
package dtos
import "time"
type Property struct {
IdLink string `json:"@id"`
Id string `json:"id"`
OrganizationID string `json:"organization_id"`
Slug string `json:"slug"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
}
type Properties struct {
ID string `json:"@id"`
TotalItems int `json:"total_items"`
Items []Property `json:"items"`
}