7 lines
168 B
Python
7 lines
168 B
Python
"""Allow safety to be executable through `python -m safety`."""
|
|
from safety.cli import cli
|
|
|
|
|
|
if __name__ == "__main__": # pragma: no cover
|
|
cli(prog_name="safety")
|