0
0
Fork 0
mirror of https://github.com/netdata/netdata.git synced 2025-04-07 14:55:41 +00:00
netdata_netdata/packaging/dag/main.py
2024-01-29 18:39:00 +02:00

18 lines
222 B
Python
Executable file

#!/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()