corrected import syntax

This commit is contained in:
= 2025-01-11 21:14:39 -05:00
parent c42b1f2723
commit 3cad01a29c

View File

@ -1,6 +1,6 @@
# main/api_views.py
from rest_framework import viewsets
from rest_framework import APIView
from rest_framework import viewsets, status
from rest_framework.views import APIView
from rest_framework.response import Response
from django.contrib.auth import authenticate, login, logout
from .models import Project, Task, RegisteredUser