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

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