matrix-webhook/matrix_webhook/__main__.py
2021-08-27 18:33:18 +02:00

9 lines
280 B
Python

"""Matrix Webhook module entrypoint."""
import logging
from . import app, conf
if __name__ == "__main__":
log_format = "%(asctime)s - %(name)s - %(lineno)d - %(levelname)s - %(message)s"
logging.basicConfig(level=50 - 10 * conf.VERBOSE, format=log_format)
app.run()