11 lines
184 B
Python
11 lines
184 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from rest_framework import generics
|
|
|
|
|
|
class APIRoot(generics.GenericAPIView):
|
|
"""
|
|
My API documentation
|
|
"""
|