add tasks app

This commit is contained in:
xoliqberdiyev
2026-04-29 18:40:51 +05:00
parent abed9e59b4
commit b39c080de3
28 changed files with 361 additions and 4 deletions

7
core/apps/tasks/urls.py Normal file
View File

@@ -0,0 +1,7 @@
from django.urls import path, include
from core.apps.tasks.views import task, column, comment
urlpatterns = [
]