helpyourneighbour/backend/debug-server.js
OpenClaw 9a26ba908a
Some checks are pending
Docker Test / test (push) Waiting to run
fix(#85): Run expanded local discovery and continue with next actionable task
2026-03-12 17:41:37 +00:00

13 lines
No EOL
310 B
JavaScript

#!/usr/bin/env node
console.log('Starting debug server...');
try {
import('./src/server.js').then(() => {
console.log('Server module imported successfully');
}).catch(err => {
console.error('Error importing server:', err);
});
} catch (err) {
console.error('Error in main execution:', err);
}