mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-20 20:19:35 +02:00
10 lines
190 B
JavaScript
10 lines
190 B
JavaScript
|
const initConfig = require('./initConfig');
|
||
|
const initFiles = require('./initFiles');
|
||
|
|
||
|
const initApp = async () => {
|
||
|
await initConfig();
|
||
|
await initFiles();
|
||
|
};
|
||
|
|
||
|
module.exports = initApp;
|