mirror of
https://github.com/facefusion/facefusion-pinokio.git
synced 2026-04-30 14:37:47 +02:00
27 lines
238 B
JavaScript
27 lines
238 B
JavaScript
module.exports = () =>
|
|
{
|
|
const config =
|
|
{
|
|
run:
|
|
[
|
|
{
|
|
method: 'fs.rm',
|
|
params:
|
|
{
|
|
'path': 'facefusion'
|
|
}
|
|
},
|
|
{
|
|
method: 'fs.rm',
|
|
params:
|
|
{
|
|
'path': '.env'
|
|
}
|
|
}
|
|
]
|
|
};
|
|
|
|
return config;
|
|
};
|
|
|