mirror of
https://github.com/pawelmalak/flame.git
synced 2024-12-22 01:31:30 +03:00
10 lines
190 B
JavaScript
10 lines
190 B
JavaScript
const initConfig = require('./initConfig');
|
|
const initFiles = require('./initFiles');
|
|
|
|
const initApp = async () => {
|
|
await initFiles();
|
|
await initConfig();
|
|
};
|
|
|
|
module.exports = initApp;
|