You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ext_hosting_provider.py 201B

123456789
  1. from flask import Flask
  2. from core.hosting_configuration import HostingConfiguration
  3. hosting_configuration = HostingConfiguration()
  4. def init_app(app: Flask):
  5. hosting_configuration.init_app(app)