第一个项目

This commit is contained in:
2025-02-16 21:51:06 +08:00
commit 1bbb2f79dc
62 changed files with 956 additions and 0 deletions

9
family_rpa/main/urls.py Normal file
View File

@@ -0,0 +1,9 @@
from django.urls import path
from . import views
urlpatterns = [
path('', views.home, name='home'),
path('upload/', views.upload_file, name='upload'),
path('delete/<int:file_id>/', views.delete_file, name='delete'),
path('message/', views.post_message, name='message'),
]