Skip to content

v0.0.16

Compare
Choose a tag to compare
@taojy123 taojy123 released this 12 Mar 04:03
· 21 commits to master since this release

添加了可以根据 django-rest-framework 的代码自动生成 Api 对象的功能

from eave.utils import auto_drf_apis
api_list, api_post, api_detail, actions = auto_drf_apis('用户', '/api/users/', UserViewSet)
doc.add_apis(api_list, api_post, api_detail, *actions)