Files
notifications-api/application.py

19 lines
372 B
Python
Raw Normal View History

##!/usr/bin/env python
2025-07-24 08:03:50 -07:00
from __future__ import print_function
2025-07-24 08:03:50 -07:00
import truststore
truststore.inject_into_ssl() # noqa
from flask import Flask # noqa
from werkzeug.serving import WSGIRequestHandler # noqa
2025-07-24 08:03:50 -07:00
from app import create_app, socketio # noqa
2025-02-03 14:38:43 -08:00
WSGIRequestHandler.version_string = lambda self: "SecureServer"
2023-08-29 14:54:30 -07:00
application = Flask("app")
create_app(application)