This repository has been archived on 2023-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
takahe/api/views/base.py

6 lines
118 B
Python
Raw Normal View History

2022-12-10 21:03:14 -07:00
from ninja import NinjaAPI
from api.parser import FormOrJsonParser
2022-12-11 11:22:06 -07:00
api_router = NinjaAPI(parser=FormOrJsonParser())