Initial commit.
This commit is contained in:
commit
347d3a969d
7 changed files with 350 additions and 0 deletions
11
cli.py
Normal file
11
cli.py
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
import json
|
||||
|
||||
import click
|
||||
|
||||
from query_performance_gauge import main
|
||||
|
||||
|
||||
@click.command()
|
||||
@click.option("--config", required=True, type=click.File())
|
||||
def measure_performance(config):
|
||||
main(json.load(config))
|
||||
Loading…
Add table
Add a link
Reference in a new issue