mirror of
https://github.com/vale981/fibre_walk_project_code
synced 2025-03-04 09:21:38 -05:00
16 lines
285 B
Python
16 lines
285 B
Python
import argparse
|
|
import ringfit.data as data
|
|
import click
|
|
|
|
import click
|
|
|
|
|
|
@click.command()
|
|
@click.option("--count", default=1, help="Number of greetings.")
|
|
@click.option("--name", prompt="Your name", help="The person to greet.")
|
|
def main():
|
|
pass
|
|
|
|
|
|
if __name__ == "main":
|
|
main()
|