mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 07:26:29 +00:00
17 lines
183 B
Python
17 lines
183 B
Python
![]() |
|
||
|
|
||
|
class Instance(object):
|
||
|
|
||
|
def __init__(self, name, image):
|
||
|
self.name = name
|
||
|
self.image = image
|
||
|
|
||
|
def boot(self):
|
||
|
pass
|
||
|
|
||
|
def shutdown(self):
|
||
|
pass
|
||
|
|
||
|
def destroy(self):
|
||
|
pass
|