mirror of
https://github.com/sartography/spiff-arena.git
synced 2025-02-05 14:13:44 +00:00
14 lines
241 B
Python
14 lines
241 B
Python
"""Command-line interface."""
|
|
import click
|
|
|
|
|
|
@click.command()
|
|
@click.version_option()
|
|
def main() -> None:
|
|
"""Flask Bpmn."""
|
|
print("This does nothing")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main(prog_name="flask-bpmn") # pragma: no cover
|