mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
8 lines
125 B
Python
8 lines
125 B
Python
"""
|
|
python -m pelican module entry point to run via python -m
|
|
"""
|
|
|
|
from . import main
|
|
|
|
if __name__ == "__main__":
|
|
main()
|