v0.0.16
添加了可以根据 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)
添加了可以根据 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)