fibre_walk_project_code/main.py

17 lines
285 B
Python
Raw Permalink Normal View History

2024-05-08 14:47:05 -04:00
import argparse
import ringfit.data as data
import click
2024-05-08 21:52:23 -04:00
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
2024-05-08 14:47:05 -04:00
if __name__ == "main":
2024-05-08 21:52:23 -04:00
main()