1
1
mirror of https://github.com/leon-ai/leon.git synced 2025-01-03 14:18:50 +03:00
leon/scripts/app/dev-app.js
2019-02-10 20:26:50 +08:00

13 lines
171 B
JavaScript

import dotenv from 'dotenv'
import serveApp from './serve-app'
dotenv.config();
/**
* Main entry for the webapp development
*/
(async () => {
await serveApp()
})()