Files
t6_mem0/embedchain-js/embedchain/index.ts
2023-09-07 05:52:44 +05:30

8 lines
153 B
TypeScript

import { EmbedChainApp } from './embedchain';
export const App = async () => {
const app = new EmbedChainApp();
await app.initApp;
return app;
};