mirror of
https://github.com/revanced/revanced-api.git
synced 2025-04-29 22:24:31 +02:00

* feat: Disallow all web crawlers * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
26 lines
499 B
Python
26 lines
499 B
Python
# api/__init__.py
|
|
from sanic import Blueprint
|
|
|
|
from api.github import github
|
|
from api.ping import ping
|
|
from api.socials import socials
|
|
from api.info import info
|
|
from api.compat import github as compat
|
|
from api.donations import donations
|
|
from api.announcements import announcements
|
|
from api.login import login
|
|
from api.robots import robots
|
|
|
|
api = Blueprint.group(
|
|
login,
|
|
ping,
|
|
github,
|
|
info,
|
|
socials,
|
|
donations,
|
|
announcements,
|
|
compat,
|
|
robots,
|
|
url_prefix="/",
|
|
)
|