summaryrefslogtreecommitdiff
path: root/src/pyssg/__init__.py
blob: 46e23236229e07091118492538b2ddd16a0e062d (plain)
1
2
3
4
5
6
7
8
9
from .pyssg import main
from .custom_logger import setup_logger
from .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']