Initial commit

This commit is contained in:
2026-05-16 12:05:36 -03:00
parent 0ce972a361
commit e82cee97a7
65 changed files with 9051 additions and 5 deletions
+9
View File
@@ -0,0 +1,9 @@
from app.main import app
def test_generated_api_documentation_is_disabled():
paths = {route.path for route in app.routes}
assert "/docs" not in paths
assert "/redoc" not in paths
assert "/openapi.json" not in paths