mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-25 07:46:28 +00:00
22 lines
208 B
Python
22 lines
208 B
Python
![]() |
|
||
|
|
||
|
class Image(object):
|
||
|
|
||
|
def create_instance(self):
|
||
|
return Instance()
|
||
|
|
||
|
def destroy(self):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class Instance(object):
|
||
|
|
||
|
def boot(self):
|
||
|
pass
|
||
|
|
||
|
def shutdown(self):
|
||
|
pass
|
||
|
|
||
|
def destroy(self):
|
||
|
pass
|