mirror of
https://github.com/status-im/spiff-arena.git
synced 2025-01-23 00:09:16 +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
|