mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 15:36:27 +00:00
8 lines
191 B
Python
8 lines
191 B
Python
|
|
|
|
class BootstrapInformation(object):
|
|
def __init__(self, manifest=None, debug=False):
|
|
self.manifest = manifest
|
|
self.debug = debug
|
|
import random
|
|
self.run_id = random.randrange(16**8)
|