Template base para proyectos SaaS multi-tenant. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React/Vite) - apps/database (PostgreSQL DDL) - docs/ (Documentación) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
17 lines
380 B
JavaScript
17 lines
380 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.buildDocumentBase = void 0;
|
|
const buildDocumentBase = () => ({
|
|
openapi: '3.0.0',
|
|
info: {
|
|
title: '',
|
|
description: '',
|
|
version: '1.0.0',
|
|
contact: {}
|
|
},
|
|
tags: [],
|
|
servers: [],
|
|
components: {}
|
|
});
|
|
exports.buildDocumentBase = buildDocumentBase;
|