mirror of
https://github.com/revanced/revanced-api.git
synced 2025-04-30 06:34:36 +02:00
12 lines
324 B
Python
12 lines
324 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
|
|
|
|
api = Blueprint.group(ping, github, info, socials, donations, compat, url_prefix="/")
|