Moves the `domain` and `ports` packages from `internal/core` to `internal`. This refactoring simplifies the directory structure by elevating the core architectural concepts of domain and ports to the top level of the `internal` directory. The `core` directory is now removed as its only purpose was to house these two packages. All import paths across the project have been updated to reflect this change.
18 lines
388 B
Go
18 lines
388 B
Go
package domain
|
|
|
|
// AppInstanceKey uniquely identifies an application instance
|
|
type AppInstanceKey struct {
|
|
Organization string
|
|
Name string
|
|
CloudletKey CloudletKey
|
|
}
|
|
|
|
// AppInstance represents a deployed application instance
|
|
type AppInstance struct {
|
|
Key AppInstanceKey
|
|
AppKey AppKey
|
|
Flavor Flavor
|
|
State string
|
|
PowerState string
|
|
Fields []string
|
|
}
|