In django RestFramework, is there any \"official\" way to generate the documentation for the \"Api Root\" ?
After looking at the RestFramework\'s source code, I\'ve foun
@api_view(['GET']) def api_root(request, format=None): return Response({ 'users': reverse('user-list', request=request, format=format), 'snippets': reverse('snippet-list', request=request, format=format) })