-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3c578b2
commit 40ef619
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/* | ||
Tools Xvideos Search | ||
*/ | ||
|
||
const axios = require('axios'); | ||
const { baseUrl } = require('../config.js') | ||
|
||
async function xvideoss(q) { | ||
try { | ||
const { data } = await axios.get(`${baseUrl}/tools/xvideosearch?q=${q}`, { | ||
headers: { | ||
'accept': 'application/json', | ||
}, | ||
}); | ||
return data; | ||
} catch (error) { | ||
console.error(error); | ||
return 'Internal Server Error!'; | ||
} | ||
} | ||
|
||
module.exports = { xvideoss } |