13 lines
308 B
Python
13 lines
308 B
Python
from django.shortcuts import render
|
|
from rest_framework.exceptions import APIException
|
|
from rest_framework.views import APIView
|
|
from rest_framework.viewsets import ModelViewSet
|
|
|
|
from rest_framework import serializers, status
|
|
from rest_framework.response import Response
|
|
|
|
|
|
|
|
class CleanData(APIView):
|
|
pass
|