summaryrefslogtreecommitdiff
path: root/src/pyssg/__init__.py
blob: dafd58bc53aa2a5c9b14d82aa8743f5bae5b2b09 (plain)
1
2
3
4
5
6
7
8
9
from pyssg.pyssg import main
from pyssg.custom_logger import setup_logger
from pyssg.cfg.yaml_parser import setup_custom_yaml


setup_logger()
setup_custom_yaml()
# not meant to be used as a package, so just give main
__all__ = ['main']