2021-04-19 16:23:50 +02:00
|
|
|
"""
|
|
|
|
This module imports all the routes that return something to the frontend.
|
2021-04-21 18:47:18 +02:00
|
|
|
"""
|
|
|
|
|
2021-04-22 18:46:41 +02:00
|
|
|
from .doa import page_doa
|
2021-04-25 16:33:12 +02:00
|
|
|
from .users import *
|
2021-05-12 18:06:59 +02:00
|
|
|
from .repository import *
|
2021-05-20 13:48:15 +02:00
|
|
|
|
2021-05-12 18:06:59 +02:00
|
|
|
__all__ = ["page_alert", "page_repository_alerts", "page_repository", "page_doa",
|
|
|
|
"page_condition", "page_repository_conditions", "page_repositories",
|
2021-05-20 13:48:15 +02:00
|
|
|
"page_login", "page_user", "page_users", "page_authorization", "page_repository_authorizations",
|
|
|
|
"page_repository_tweets"]
|