2023-04-19 00:17:48 +00:00
|
|
|
"""Bridgy Fed user-facing app invoked by gunicorn in app.yaml.
|
2022-11-22 02:43:50 +00:00
|
|
|
|
2023-04-19 00:17:48 +00:00
|
|
|
Import all modules that define views in the app so that their URL routes get
|
|
|
|
registered.
|
|
|
|
"""
|
|
|
|
from flask_app import app
|
2021-07-12 00:55:59 +00:00
|
|
|
|
2023-01-13 03:43:12 +00:00
|
|
|
# import all modules to register their Flask handlers
|
2023-12-03 05:18:22 +00:00
|
|
|
import activitypub, atproto, convert, follow, pages, redirect, ui, webfinger, web
|
2023-05-26 23:07:36 +00:00
|
|
|
|
|
|
|
import models
|
|
|
|
models.reset_protocol_properties()
|