Add: posts api app

This commit is contained in:
Aroy-Art 2025-02-10 10:16:26 +01:00
parent 141e08f0f4
commit a5b0580be6
Signed by: Aroy
GPG key ID: 583642324A1D2070
6 changed files with 197 additions and 0 deletions

View file

@ -4,4 +4,5 @@ from django.urls import path, include
urlpatterns = [
path("auth/", include("api.authentication.urls")),
path("user/", include("api.user.urls")),
path("posts/", include("api.posts.urls")),
]