58ca4e68db
- Go backend API with full CRUD for all modules (CRM, Sales, Finance, HR, Legal, Marketing, Support, Purchase, Inventory, Projects, Automation, Analytics) - Rust analytics service with parallel report generation - C runtime with POSIX shared memory IPC - PostgreSQL schema with 30+ tables, full migrations - Redis cache, sessions, pub/sub - Kafka event streaming with Zookeeper - WebSocket hub for real-time updates - Automation engine with cron jobs, workflows, event triggers - JWT authentication, multi-tenant from start - Docker Compose with all services - Nginx reverse proxy with rate limiting - Integration tests passing - Feature gap analysis against Fortnox/Odoo/Visma Refs: BOC-001
24 lines
879 B
JavaScript
24 lines
879 B
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.statements = exports.statement = exports.smart = exports.program = exports.expression = exports.default = void 0;
|
|
var formatters = require("./formatters.js");
|
|
var _builder = require("./builder.js");
|
|
const smart = exports.smart = (0, _builder.default)(formatters.smart);
|
|
const statement = exports.statement = (0, _builder.default)(formatters.statement);
|
|
const statements = exports.statements = (0, _builder.default)(formatters.statements);
|
|
const expression = exports.expression = (0, _builder.default)(formatters.expression);
|
|
const program = exports.program = (0, _builder.default)(formatters.program);
|
|
var _default = exports.default = Object.assign(smart.bind(undefined), {
|
|
smart,
|
|
statement,
|
|
statements,
|
|
expression,
|
|
program,
|
|
ast: smart.ast
|
|
});
|
|
|
|
//# sourceMappingURL=index.js.map
|