14 lines
270 B
Python
Executable File
14 lines
270 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import argparse
|
|
|
|
from build_runtime import attach_build_runtime
|
|
|
|
parser = argparse.ArgumentParser()
|
|
|
|
subparsers = parser.add_subparsers(required=True, title='commands')
|
|
attach_build_runtime(subparsers)
|
|
|
|
args = parser.parse_args()
|
|
args.func(args)
|