11 lines
95 B
Python
11 lines
95 B
Python
import click
|
|
|
|
|
|
@click.command()
|
|
def greet():
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
greet()
|