Skip to content

Commit

Permalink
Trying other ways to import modules in python
Browse files Browse the repository at this point in the history
  • Loading branch information
ajha63 committed Oct 5, 2024
1 parent 0ac78b6 commit 44a263a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion doctorapp/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,12 @@
"""
from django.contrib import admin
from django.urls import path, include
import rest_framework.urls as framework_urls


urlpatterns = [
path('admin/', admin.site.urls),
path('api-auth/', include('rest_framework.urls')),
path('api-auth/', include(framework_urls)),
path('', include('docs.urls')),
path('api/', include('patients.urls')),
path('api/', include('doctors.urls')),
Expand Down

0 comments on commit 44a263a

Please sign in to comment.