mcphub / src /index.ts
wuran's picture
Upload folder using huggingface_hub
eb846d0 verified
raw
history blame contribute delete
340 Bytes
import 'reflect-metadata';
import AppServer from './server.js';
const appServer = new AppServer();
async function boot() {
try {
await appServer.initialize();
appServer.start();
} catch (error) {
console.error('Failed to start application:', error);
process.exit(1);
}
}
boot();
export default appServer.getApp();