mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 15:36:27 +00:00
8 lines
166 B
Python
8 lines
166 B
Python
from build_server import BuildServer
|
|
|
|
|
|
class LocalBuildServer(BuildServer):
|
|
|
|
def run(self, manifest):
|
|
from bootstrapvz.base.main import run
|
|
return run(manifest)
|