add: draft

This commit is contained in:
2025-12-29 15:47:10 +03:00
parent 56af36451b
commit 3a6848a630
7 changed files with 227 additions and 21 deletions

View File

@@ -0,0 +1,8 @@
from django.urls import path
from . import views
urlpatterns = [
path('', views.index, name='index'),
path('process/', views.process_text, name='process_text'),
]