16 lines
417 B
Go
16 lines
417 B
Go
package models
|
|
|
|
type Containers struct {
|
|
ID string `json:"id"`
|
|
Head bool `json:"head"` // if the container is the head of the deployment
|
|
ContainerID string `json:"container_id"`
|
|
DeploymentID int64 `json:"deployment_id"`
|
|
CreatedAt string `json:"created_at"`
|
|
}
|
|
|
|
type Deployments struct {
|
|
ID int64 `json:"id"`
|
|
URL string `json:"url"`
|
|
CreatedAt string `json:"created_at"`
|
|
}
|