1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-19 19:49:37 +02:00
flame/utils/init/index.js

10 lines
190 B
JavaScript
Raw Normal View History

2021-10-06 14:17:31 +02:00
const initConfig = require('./initConfig');
const initFiles = require('./initFiles');
const initApp = async () => {
await initFiles();
2021-10-21 17:14:25 +02:00
await initConfig();
2021-10-06 14:17:31 +02:00
};
module.exports = initApp;