mirror of
https://github.com/facefusion/facefusion-pinokio.git
synced 2026-04-20 18:26:36 +02:00
29 lines
295 B
JavaScript
29 lines
295 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = () =>
|
|
{
|
|
const config =
|
|
{
|
|
run:
|
|
[
|
|
{
|
|
method: 'fs.rm',
|
|
params:
|
|
{
|
|
'path': 'facefusion'
|
|
}
|
|
},
|
|
{
|
|
method: 'fs.rm',
|
|
params:
|
|
{
|
|
path: path.resolve(__dirname, '.env')
|
|
}
|
|
}
|
|
]
|
|
};
|
|
|
|
return config;
|
|
};
|
|
|