This repository has been archived on 2023-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
ictmpl/ictmpl/__init__.py

11 lines
133 B
Python

from .config import Config
from .ictmpl import Ictmpl
ictmpl = Ictmpl(Config())
if __name__ == '__main__':
ictmpl.run()