almost there
This commit is contained in:
9
pkg/config.go
Normal file
9
pkg/config.go
Normal file
@@ -0,0 +1,9 @@
|
||||
package pkg
|
||||
|
||||
type ProjectConfig struct {
|
||||
Name string `json:"name,omitempty"`
|
||||
Url string `json:"url,omitempty"`
|
||||
Port uint16 `json:"port,omitempty"`
|
||||
EnvFile string `json:"env_file,omitempty"`
|
||||
Environment []string `json:"environment,omitempty"`
|
||||
}
|
||||
8
pkg/responses.go
Normal file
8
pkg/responses.go
Normal file
@@ -0,0 +1,8 @@
|
||||
package pkg
|
||||
|
||||
type App struct {
|
||||
ID int64 `json:"id,omitempty"`
|
||||
Name string `json:"name,omitempty"`
|
||||
DeploymentID int64 `json:"deployment_id,omitempty"`
|
||||
DeploymentStatus string `json:"deployment_status,omitempty"`
|
||||
}
|
||||
Reference in New Issue
Block a user