File size: 186 Bytes
a85c9b8
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
const { EmbedChainApp } = require("./embedchain/embedchain");

async function App() {
  const app = new EmbedChainApp();
  await app.init_app;
  return app;
}

module.exports = { App };