UNPKG

hikma-engine

Version:

Code Knowledge Graph Indexer - A sophisticated TypeScript-based indexer that transforms Git repositories into multi-dimensional knowledge stores for AI agents

12 lines (11 loc) 302 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.BaseDTO = void 0; class BaseDTO { constructor(id) { this.id = id; this.created_at = new Date().toISOString(); this.updated_at = new Date().toISOString(); } } exports.BaseDTO = BaseDTO;