Files
notifications-api/application.py
Kenneth Kehl 70d142cb90 fix truststore
2025-07-24 08:03:50 -07:00

19 lines
372 B
Python

##!/usr/bin/env python
from __future__ import print_function
import truststore
truststore.inject_into_ssl() # noqa
from flask import Flask # noqa
from werkzeug.serving import WSGIRequestHandler # noqa
from app import create_app, socketio # noqa
WSGIRequestHandler.version_string = lambda self: "SecureServer"
application = Flask("app")
create_app(application)