index.js 186 B

123456789
  1. const { EmbedChainApp } = require("./embedchain/embedchain");
  2. async function App() {
  3. const app = new EmbedChainApp();
  4. await app.init_app;
  5. return app;
  6. }
  7. module.exports = { App };