1
0
Fork 0
mirror of https://github.com/sussy-code/smov.git synced 2025-01-02 16:37:39 +01:00
smov/src/lib/index.js

16 lines
453 B
JavaScript
Raw Normal View History

2021-07-20 12:20:56 +02:00
import lookMovie from './lookMovie';
// import gomostream from './gomostream';
async function findContent(searchTerm, type) {
return await lookMovie.findContent(searchTerm, type);
}
async function getStreamUrl(slug, type, season, episode) {
return await lookMovie.getStreamUrl(slug, type, season, episode);
}
async function getEpisodes(slug) {
return await lookMovie.getEpisodes(slug);
}
export { findContent, getStreamUrl, getEpisodes }