Files
soleprint/station/tools/tester/__main__.py
2025-12-24 05:38:37 -03:00

14 lines
232 B
Python

"""
CLI entry point for contracts_http tool.
Usage:
python -m contracts_http discover
python -m contracts_http run
python -m contracts_http run mascotas
"""
from .cli import main
if __name__ == "__main__":
main()