10 lines
186 B
JavaScript
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 };
|