mirror of
https://github.com/leon-ai/leon.git
synced 2025-01-03 14:18:50 +03:00
13 lines
171 B
JavaScript
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()
|
|
})()
|