mirror of
https://github.com/lemeow125/DRF_Template.git
synced 2024-11-17 12:19:24 +08:00
6 lines
229 B
Python
6 lines
229 B
Python
|
from rest_framework.permissions import IsAuthenticated
|
||
|
from rest_framework import generics
|
||
|
from accounts.serializers import CustomUserSerializer
|
||
|
from rest_framework.response import Response
|
||
|
from accounts.models import CustomUser
|