summaryrefslogtreecommitdiffstats
path: root/packaging/dag/main.py
blob: c7e9670cf97ff4cec43a3afc7f1c6981409af3f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env python3

import click

from test_command import test
from build_command import build


@click.group()
def cli():
    pass


cli.add_command(test)
cli.add_command(build)

if __name__ == "__main__":
    cli()