summaryrefslogtreecommitdiff
path: root/pkg/machine/libvirt/machine.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/machine/libvirt/machine.go')
-rw-r--r--pkg/machine/libvirt/machine.go15
1 files changed, 15 insertions, 0 deletions
diff --git a/pkg/machine/libvirt/machine.go b/pkg/machine/libvirt/machine.go
new file mode 100644
index 000000000..2c907ba5f
--- /dev/null
+++ b/pkg/machine/libvirt/machine.go
@@ -0,0 +1,15 @@
+package libvirt
+
+import "github.com/containers/podman/v3/pkg/machine"
+
+func (v *MachineVM) Create(name string, opts machine.CreateOptions) error {
+ return nil
+}
+
+func (v *MachineVM) Start(name string) error {
+ return nil
+}
+
+func (v *MachineVM) Stop(name string) error {
+ return nil
+}