mirror of
https://github.com/sartography/spiff-arena.git
synced 2025-01-16 20:45:28 +00:00
14 lines
263 B
Python
14 lines
263 B
Python
"""Command-line interface."""
|
|
import click
|
|
|
|
|
|
@click.command()
|
|
@click.version_option()
|
|
def main() -> None:
|
|
"""Spiffworkflow Backend."""
|
|
print("This does nothing")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main(prog_name="spiffworkflow-backend") # pragma: no cover
|