Added posts creation and posts detail

This commit is contained in:
ITQ
2024-03-04 16:37:16 +03:00
parent 12bda5d3da
commit 4946122f2e
12 changed files with 180 additions and 0 deletions
+1
View File
@@ -3,5 +3,6 @@ from django.urls import include, path
urlpatterns = [
path("ping", include("api.ping.urls")),
path("countries", include("api.countries.urls")),
path("posts", include("api.posts.urls")),
path("", include("api.users.urls")),
]