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

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