feat: export (WIP)

This commit is contained in:
Herculino Trotta
2025-02-18 19:55:12 -03:00
parent ebc41a8049
commit 3080df9b66
17 changed files with 105 additions and 2 deletions
+6
View File
@@ -0,0 +1,6 @@
from django.urls import path
import apps.export_app.views as views
urlpatterns = [
path("export/", views.export, name="export"),
]