remoção de arquivos desnecessários

This commit is contained in:
joao.herculano
2026-05-18 16:39:29 -03:00
parent 826fccf678
commit ab1445574f
7 changed files with 9 additions and 4 deletions
+1
View File
@@ -1,3 +1,4 @@
from django.db import models
# Create your models here.
# Nota: este módulo está vazio por enquanto e pode ser removido ou preenchido quando houver modelos explicitamente necessários.
+1
View File
@@ -1,3 +1,4 @@
from django.test import TestCase
# Create your tests here.
# Nota: este módulo está um placeholder. Remova ou adicione testes conforme o projeto evoluir.
+2
View File
@@ -4,6 +4,8 @@ from . import views
app_name = "home"
urlpatterns = [
# Esta app é montada em /home/, mas também há um path('/') no projeto
# principal para renderizar a mesma página inicial.
path("", views.home_page, name="home_page"),
path("api/table-data/", views.get_table_data, name="table_data"),
path("api/pivot-data/", views.get_pivot_data, name="pivot_data"),