code cleanup, starting and stopping

This commit is contained in:
Zoe
2024-12-04 02:33:21 -06:00
parent a51cc0e779
commit 1bb4377a89
8 changed files with 469 additions and 118 deletions

14
models/docker.go Normal file
View File

@@ -0,0 +1,14 @@
package models
type Containers struct {
ID string `json:"id"`
ContainerID string `json:"container_id"`
DeploymentID int64 `json:"deployment_id"`
CreatedAt string `json:"created_at"`
}
type Deployments struct {
ID int64 `json:"id"`
URLs string `json:"urls"`
CreatedAt string `json:"created_at"`
}