forked from github/pelican
9 lines
126 B
Python
9 lines
126 B
Python
"""
|
|
python -m pelican module entry point to run via python -m
|
|
"""
|
|
|
|
from . import main
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|