arvox-backend
Version:
Un framework backend moderne et modulaire basé sur Hono, TypeScript et l'architecture hexagonale avec authentification Better Auth + Drizzle intégrée
14 lines • 413 B
JavaScript
// Core framework exports
export * from './core';
// Interface exports
export * from './interfaces';
// Type exports
export * from './types';
// Utility exports
export * from './utils';
// Main framework class
export { ArvoxFramework } from './core/arvox-framework';
// Version and metadata
export const FRAMEWORK_VERSION = '1.0.0';
export const FRAMEWORK_NAME = 'arvox-backend';
//# sourceMappingURL=index.js.map