mirror of
https://github.com/revanced/revanced-api.git
synced 2025-04-30 14:44:28 +02:00

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
11 lines
286 B
Python
11 lines
286 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.compat import github as old
|
|
from api.donations import donations
|
|
|
|
api = Blueprint.group(ping, github, socials, donations, old, url_prefix="/")
|