index.ts 153 B

1234567
  1. import { EmbedChainApp } from './embedchain';
  2. export const App = async () => {
  3. const app = new EmbedChainApp();
  4. await app.initApp;
  5. return app;
  6. };