9 lines
129 B
Python
9 lines
129 B
Python
"""
|
|
Allow running the package as a module: python -m directory
|
|
"""
|
|
|
|
from .cli import main
|
|
|
|
if __name__ == "__main__":
|
|
main()
|