aboutsummaryrefslogtreecommitdiff
path: root/newspipe/web/views/api/v2/__init__.py
blob: 3f9f9df4633b2fad67180b7de1dca63a9d7e4dd0 (plain)
1
2
3
4
5
from newspipe.web.views.api.v2 import article
from newspipe.web.views.api.v2 import category
from newspipe.web.views.api.v2 import feed

__all__ = ["article", "feed", "category"]
bgstack15