mirror of
https://github.com/netdata/netdata.git
synced 2025-04-07 14:55:41 +00:00
18 lines
222 B
Python
Executable file
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()
|