9 lines
162 B
Python
9 lines
162 B
Python
from ..cli import CLI
|
|
|
|
from .setup import setup as cmd_setup
|
|
from .compiler import setup as cmd_build
|
|
|
|
def setup(cli: CLI):
|
|
cmd_setup(cli)
|
|
cmd_build(cli)
|