@notes-sync/service
Version:
Background service for AI-powered note synchronization
18 lines • 681 B
JavaScript
;
/**
* Main entry point for the Notes Sync Service
* This file serves as the primary entry point for both direct execution and service installation
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.main = void 0;
// Import main from the original entry point to maintain compatibility
const main_1 = require("./main");
Object.defineProperty(exports, "main", { enumerable: true, get: function () { return main_1.main; } });
// Auto-execute when run directly
if (require.main === module) {
(0, main_1.main)().catch((err) => {
console.error("Service error:", err);
process.exit(1);
});
}
//# sourceMappingURL=index.js.map