#!python
import sys
from components.builder import Builder

args = sys.argv[1:]
command = args.pop(0)

Builder().call_from_cli(command, args, True)