mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 15:36:27 +00:00
16 lines
183 B
Python
16 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
|