mirror of
https://github.com/luxfi/pics.git
synced 2026-07-27 05:11:31 +00:00
7 lines
192 B
JavaScript
7 lines
192 B
JavaScript
'use strict';
|
|
|
|
module.exports = async() => {
|
|
console.log('Moving user uploads from /img/ to /file/');
|
|
require('fs').renameSync(__dirname+'/../static/img/', __dirname+'/../static/file/');
|
|
};
|