mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-02-22 10:32:10 +00:00
13 lines
215 B
Python
13 lines
215 B
Python
|
|
import click
|
||
|
|
|
||
|
|
|
||
|
|
@click.command()
|
||
|
|
@click.argument("foo")
|
||
|
|
@click.option("--bar", is_flag=True, help="help for bar")
|
||
|
|
def main(foo, bar):
|
||
|
|
click.echo("{}, {}".format(foo, bar))
|
||
|
|
|
||
|
|
|
||
|
|
if __name__ == '__main__':
|
||
|
|
main()
|