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

16 lines (15 loc) 303 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.BaseModel = void 0; class BaseModel { constructor(dto) { this.dto = dto; } getDto() { return this.dto; } getId() { return this.dto.id; } } exports.BaseModel = BaseModel;