8 lines
153 B
TypeScript
8 lines
153 B
TypeScript
import { EmbedChainApp } from './embedchain';
|
|
|
|
export const App = async () => {
|
|
const app = new EmbedChainApp();
|
|
await app.initApp;
|
|
return app;
|
|
};
|