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

10 lines
186 B
JavaScript

const { EmbedChainApp } = require("./embedchain/embedchain");
async function App() {
const app = new EmbedChainApp();
await app.init_app;
return app;
}
module.exports = { App };