11 lines
130 B
Python
11 lines
130 B
Python
#!/usr/bin/env python
|
|
|
|
import click
|
|
|
|
@click.command()
|
|
@click.option('sch_file')
|
|
def cli():
|
|
|
|
|
|
if __name__ == '__main__':
|
|
cli()
|