feat(projects): 新增Click综合案例示例代码及素材

This commit is contained in:
100gle
2022-07-06 22:52:54 +08:00
parent e94d3af3be
commit 7e44811195
18 changed files with 965 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import click
@click.command()
def greet():
pass
if __name__ == '__main__':
greet()