first commit

This commit is contained in:
2025-09-19 15:19:32 +05:00
commit d160410cd9
305 changed files with 9509 additions and 0 deletions

9
core/apps/blog/urls.py Normal file
View File

@@ -0,0 +1,9 @@
from .views import CategoryView, TagView, PostView
from django.urls import include, path
from rest_framework.routers import DefaultRouter
router = DefaultRouter()
router.register("post", PostView, basename="post")
router.register("category", CategoryView, basename="category")
router.register("tag", TagView, basename="tag")
urlpatterns = [path("", include(router.urls))]