31 lines
343 B
JavaScript
31 lines
343 B
JavaScript
const YTDL = require('ytdl-core');
|
|
|
|
// TODO: does the video resolver need a queue?
|
|
|
|
// cache
|
|
|
|
function CheckCache()
|
|
{
|
|
|
|
}
|
|
|
|
function CleanCache()
|
|
{
|
|
|
|
}
|
|
|
|
module.exports.InitResolverCache = async () =>
|
|
{
|
|
|
|
}
|
|
|
|
module.exports.GetVideoInfoArr = async (arr) =>
|
|
{
|
|
|
|
}
|
|
|
|
module.exports.GetVideoInfo = async (video) =>
|
|
{
|
|
|
|
}
|