14 lines
306 B
Python
14 lines
306 B
Python
"""Matrix Webhook module entrypoint."""
|
|
import logging
|
|
|
|
from . import app, conf
|
|
|
|
|
|
def 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()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|