mirror of
https://github.com/AmanTahiliani/PeerNotes.git
synced 2026-08-08 04:06:18 -04:00
7 lines
259 B
Python
7 lines
259 B
Python
|
|
from rest_framework.views import APIView
|
||
|
|
from rest_framework.response import Response
|
||
|
|
from api.serializers import LoginSerializer
|
||
|
|
from django.contrib.auth import authenticate
|
||
|
|
from rest_framework.authtoken.models import Token
|
||
|
|
from rest_framework import status
|