mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 18:00:35 +00:00
11 lines
257 B
Python
11 lines
257 B
Python
import common
|
|
|
|
|
|
class Manifest(common.Manifest):
|
|
def parse(self, data):
|
|
super(Manifest, self).parse(data)
|
|
self.credentials = data["credentials"]
|
|
self.virtualization = data["virtualization"]
|
|
|
|
def validate(self):
|
|
super(Manifest, self).validate()
|