summaryrefslogtreecommitdiff
path: root/pkg/domain
diff options
context:
space:
mode:
authoropenshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com>2022-07-08 07:32:29 +0000
committerGitHub <noreply@github.com>2022-07-08 07:32:29 +0000
commit720b3217fd02c635d4f3fd5a2ba0464ae1d8c8b2 (patch)
treedcc6322ad455e568dbf33ae1a612c79451f0be1a /pkg/domain
parent862cc42ddc11ff56b41be128182b748b0843dff3 (diff)
parent61a67a07b1f6d7ab0a358ee19da90b9392900f49 (diff)
downloadpodman-720b3217fd02c635d4f3fd5a2ba0464ae1d8c8b2.tar.gz
podman-720b3217fd02c635d4f3fd5a2ba0464ae1d8c8b2.tar.bz2
podman-720b3217fd02c635d4f3fd5a2ba0464ae1d8c8b2.zip
Merge pull request #14850 from Luap99/e2e-machine
pkg/machine/e2e: do not import from cmd/podman
Diffstat (limited to 'pkg/domain')
-rw-r--r--pkg/domain/entities/machine.go18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkg/domain/entities/machine.go b/pkg/domain/entities/machine.go
new file mode 100644
index 000000000..6ba53dbd1
--- /dev/null
+++ b/pkg/domain/entities/machine.go
@@ -0,0 +1,18 @@
+package entities
+
+type ListReporter struct {
+ Name string
+ Default bool
+ Created string
+ Running bool
+ Starting bool
+ LastUp string
+ Stream string
+ VMType string
+ CPUs uint64
+ Memory string
+ DiskSize string
+ Port int
+ RemoteUsername string
+ IdentityPath string
+}