Skip to content

Commit 6c5715d

Browse files
authored
Update README.md
1 parent c1bae4a commit 6c5715d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,11 @@ api_admin_v1.auto_create_admin_controllers()
6666
Now go to urls.py and add the following:
6767
```
6868
from django.urls import path
69-
from .apis import apis
69+
from .apis import api_admin_v1
7070
7171
urlpatterns = [
7272
path("admin/", admin.site.urls),
73-
path("api_admin/v1/", apis.urls), # <---------- !
73+
path("api_admin/v1/", api_admin_v1.urls), # <---------- !
7474
]
7575
```
7676
Now go to http://127.0.0.1:8000/api_admin/v1/docs

0 commit comments

Comments
 (0)