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/app.py

8 lines
154 B
Python

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