mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-25 07:46:28 +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)
|