mirror of
https://github.com/lllin000/PaperForge.git
synced 2026-07-22 17:00:23 +00:00
8 lines
164 B
Python
8 lines
164 B
Python
"""paperforge.__main__ — entry point for `python -m paperforge`."""
|
|
|
|
import sys
|
|
|
|
from paperforge.cli import main
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(main())
|