Initial commit - Event Planner application

This commit is contained in:
mberlin
2026-03-18 14:55:56 -03:00
commit 86d779eb4d
7548 changed files with 1006324 additions and 0 deletions

12
dist/core/entities/base.entity.js vendored Normal file
View File

@@ -0,0 +1,12 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.BaseEntity = void 0;
const uuid_1 = require("uuid");
class BaseEntity {
constructor() {
this.id = (0, uuid_1.v4)();
this.createdAt = new Date();
this.updatedAt = new Date();
}
}
exports.BaseEntity = BaseEntity;