Spaces:
Build error
Build error
import { promises as fs } from 'node:fs' | |
export const getStats = async () => { | |
const videoFilePaths = await fs.readdir(process.env.WEBTV_VIDEO_STORAGE_PATH) | |
const audioFilePaths = await fs.readdir(process.env.WEBTV_AUDIO_STORAGE_PATH) | |
return { | |
nbVideoFiles: videoFilePaths.length, | |
nbAudioFiles: audioFilePaths.length, | |
} | |
} |