Skip to content

Commit

Permalink
refactor(controller): change sinkaroid.org => scathach.id docs types
Browse files Browse the repository at this point in the history
  • Loading branch information
sinkaroid committed Apr 18, 2023
1 parent 3603e01 commit 5cf38dc
Show file tree
Hide file tree
Showing 24 changed files with 78 additions and 78 deletions.
6 changes: 3 additions & 3 deletions src/controller/pornhub/pornhubGet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,19 @@ export async function getPornhub(req: Request, res: Response) {
* HTTP/1.1 400 Bad Request
*
* @apiExample {curl} curl
* curl -i https://lust.sinkaroid.org/pornhub/get?id=ph63c4e1dc48fe7
* curl -i https://lust.scathach.id/pornhub/get?id=ph63c4e1dc48fe7
*
* @apiExample {js} JS/TS
* import axios from "axios"
*
* axios.get("https://lust.sinkaroid.org/pornhub/get?id=ph63c4e1dc48fe7")
* axios.get("https://lust.scathach.id/pornhub/get?id=ph63c4e1dc48fe7")
* .then(res => console.log(res.data))
* .catch(err => console.error(err))
*
* @apiExample {python} Python
* import aiohttp
* async with aiohttp.ClientSession() as session:
* async with session.get("https://lust.sinkaroid.org/pornhub/get?id=ph63c4e1dc48fe7") as resp:
* async with session.get("https://lust.scathach.id/pornhub/get?id=ph63c4e1dc48fe7") as resp:
* print(await resp.json())
*/

Expand Down
6 changes: 3 additions & 3 deletions src/controller/pornhub/pornhubGetRelated.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,19 @@ export async function relatedPornhub(req: Request, res: Response) {
* HTTP/1.1 400 Bad Request
*
* @apiExample {curl} curl
* curl -i https://lust.sinkaroid.org/pornhub/get?id=ph63c4e1dc48fe7
* curl -i https://lust.scathach.id/pornhub/get?id=ph63c4e1dc48fe7
*
* @apiExample {js} JS/TS
* import axios from "axios"
*
* axios.get("https://lust.sinkaroid.org/pornhub/get?id=ph63c4e1dc48fe7")
* axios.get("https://lust.scathach.id/pornhub/get?id=ph63c4e1dc48fe7")
* .then(res => console.log(res.data))
* .catch(err => console.error(err))
*
* @apiExample {python} Python
* import aiohttp
* async with aiohttp.ClientSession() as session:
* async with session.get("https://lust.sinkaroid.org/pornhub/get?id=ph63c4e1dc48fe7") as resp:
* async with session.get("https://lust.scathach.id/pornhub/get?id=ph63c4e1dc48fe7") as resp:
* print(await resp.json())
*/

Expand Down
6 changes: 3 additions & 3 deletions src/controller/pornhub/pornhubRandom.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,19 @@ export async function randomPornhub(req: Request, res: Response) {
* HTTP/1.1 400 Bad Request
*
* @apiExample {curl} curl
* curl -i https://lust.sinkaroid.org/pornhub/random
* curl -i https://lust.scathach.id/pornhub/random
*
* @apiExample {js} JS/TS
* import axios from "axios"
*
* axios.get("https://lust.sinkaroid.org/pornhub/random")
* axios.get("https://lust.scathach.id/pornhub/random")
* .then(res => console.log(res.data))
* .catch(err => console.error(err))
*
* @apiExample {python} Python
* import aiohttp
* async with aiohttp.ClientSession() as session:
* async with session.get("https://lust.sinkaroid.org/pornhub/random") as resp:
* async with session.get("https://lust.scathach.id/pornhub/random") as resp:
* print(await resp.json())
*
*/
Expand Down
8 changes: 4 additions & 4 deletions src/controller/pornhub/pornhubSearch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,20 @@ export async function searchPornhub(req: Request, res: Response) {
* HTTP/1.1 400 Bad Request
*
* @apiExample {curl} curl
* curl -i https://lust.sinkaroid.org/pornhub/search?key=milf
* curl -i https://lust.sinkaroid.org/pornhub/search?key=milf&page=2&sort=mr
* curl -i https://lust.scathach.id/pornhub/search?key=milf
* curl -i https://lust.scathach.id/pornhub/search?key=milf&page=2&sort=mr
*
* @apiExample {js} JS/TS
* import axios from "axios"
*
* axios.get("https://lust.sinkaroid.org/pornhub/search?key=milf")
* axios.get("https://lust.scathach.id/pornhub/search?key=milf")
* .then(res => console.log(res.data))
* .catch(err => console.error(err))
*
* @apiExample {python} Python
* import aiohttp
* async with aiohttp.ClientSession() as session:
* async with session.get("https://lust.sinkaroid.org/pornhub/search?key=milf") as resp:
* async with session.get("https://lust.scathach.id/pornhub/search?key=milf") as resp:
* print(await resp.json())
*/

Expand Down
6 changes: 3 additions & 3 deletions src/controller/redtube/redtubeGet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,19 @@ export async function getRedtube(req: Request, res: Response) {
* HTTP/1.1 400 Bad Request
*
* @apiExample {curl} curl
* curl -i https://lust.sinkaroid.org/redtube/get?id=42763661
* curl -i https://lust.scathach.id/redtube/get?id=42763661
*
* @apiExample {js} JS/TS
* import axios from "axios"
*
* axios.get("https://lust.sinkaroid.org/redtube/get?id=42763661")
* axios.get("https://lust.scathach.id/redtube/get?id=42763661")
* .then(res => console.log(res.data))
* .catch(err => console.error(err))
*
* @apiExample {python} Python
* import aiohttp
* async with aiohttp.ClientSession() as session:
* async with session.get("https://lust.sinkaroid.org/redtube/get?id=42763661") as resp:
* async with session.get("https://lust.scathach.id/redtube/get?id=42763661") as resp:
* print(await resp.json())
*/

Expand Down
6 changes: 3 additions & 3 deletions src/controller/redtube/redtubeGetRelated.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,19 @@ export async function relatedRedtube(req: Request, res: Response) {
* HTTP/1.1 400 Bad Request
*
* @apiExample {curl} curl
* curl -i https://lust.sinkaroid.org/redtube/get?id=41698751
* curl -i https://lust.scathach.id/redtube/get?id=41698751
*
* @apiExample {js} JS/TS
* import axios from "axios"
*
* axios.get("https://lust.sinkaroid.org/redtube/get?id=41698751")
* axios.get("https://lust.scathach.id/redtube/get?id=41698751")
* .then(res => console.log(res.data))
* .catch(err => console.error(err))
*
* @apiExample {python} Python
* import aiohttp
* async with aiohttp.ClientSession() as session:
* async with session.get("https://lust.sinkaroid.org/redtube/get?id=41698751") as resp:
* async with session.get("https://lust.scathach.id/redtube/get?id=41698751") as resp:
* print(await resp.json())
*/

Expand Down
6 changes: 3 additions & 3 deletions src/controller/redtube/redtubeRandom.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,19 @@ export async function randomRedtube(req: Request, res: Response) {
* HTTP/1.1 400 Bad Request
*
* @apiExample {curl} curl
* curl -i https://lust.sinkaroid.org/redtube/random
* curl -i https://lust.scathach.id/redtube/random
*
* @apiExample {js} JS/TS
* import axios from "axios"
*
* axios.get("https://lust.sinkaroid.org/redtube/random")
* axios.get("https://lust.scathach.id/redtube/random")
* .then(res => console.log(res.data))
* .catch(err => console.error(err))
*
* @apiExample {python} Python
* import aiohttp
* async with aiohttp.ClientSession() as session:
* async with session.get("https://lust.sinkaroid.org/redtube/random") as resp:
* async with session.get("https://lust.scathach.id/redtube/random") as resp:
* print(await resp.json())
*/
const resolve = await lust.fetchBody(c.REDTUBE);
Expand Down
8 changes: 4 additions & 4 deletions src/controller/redtube/redtubeSearch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,20 @@ export async function searchRedtube(req: Request, res: Response) {
* HTTP/1.1 400 Bad Request
*
* @apiExample {curl} curl
* curl -i https://lust.sinkaroid.org/redtube/search?key=milf
* curl -i https://lust.sinkaroid.org/redtube/search?key=milf&page=2
* curl -i https://lust.scathach.id/redtube/search?key=milf
* curl -i https://lust.scathach.id/redtube/search?key=milf&page=2
*
* @apiExample {js} JS/TS
* import axios from "axios"
*
* axios.get("https://lust.sinkaroid.org/redtube/search?key=milf")
* axios.get("https://lust.scathach.id/redtube/search?key=milf")
* .then(res => console.log(res.data))
* .catch(err => console.error(err))
*
* @apiExample {python} Python
* import aiohttp
* async with aiohttp.ClientSession() as session:
* async with session.get("https://lust.sinkaroid.org/redtube/search?key=milf") as resp:
* async with session.get("https://lust.scathach.id/redtube/search?key=milf") as resp:
* print(await resp.json())
*/

Expand Down
6 changes: 3 additions & 3 deletions src/controller/xhamster/xhamsterGet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,19 @@ export async function getXhamster(req: Request, res: Response) {
* HTTP/1.1 400 Bad Request
*
* @apiExample {curl} curl
* curl -i https://lust.sinkaroid.org/xhamster/get?id=videos/horny-makima-tests-new-toy-and-cums-intensely-xhAa5wx
* curl -i https://lust.scathach.id/xhamster/get?id=videos/horny-makima-tests-new-toy-and-cums-intensely-xhAa5wx
*
* @apiExample {js} JS/TS
* import axios from "axios"
*
* axios.get("https://lust.sinkaroid.org/xhamster/get?id=videos/horny-makima-tests-new-toy-and-cums-intensely-xhAa5wx")
* axios.get("https://lust.scathach.id/xhamster/get?id=videos/horny-makima-tests-new-toy-and-cums-intensely-xhAa5wx")
* .then(res => console.log(res.data))
* .catch(err => console.error(err))
*
* @apiExample {python} Python
* import aiohttp
* async with aiohttp.ClientSession() as session:
* async with session.get("https://lust.sinkaroid.org/xhamster/get?id=videos/horny-makima-tests-new-toy-and-cums-intensely-xhAa5wx") as resp:
* async with session.get("https://lust.scathach.id/xhamster/get?id=videos/horny-makima-tests-new-toy-and-cums-intensely-xhAa5wx") as resp:
* print(await resp.json())
*/

Expand Down
6 changes: 3 additions & 3 deletions src/controller/xhamster/xhamsterGetRelated.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,19 @@ export async function relatedXhamster(req: Request, res: Response) {
* HTTP/1.1 400 Bad Request
*
* @apiExample {curl} curl
* curl -i https://lust.sinkaroid.org/xhamster/related?id=videos/horny-makima-tests-new-toy-and-cums-intensely-xhAa5wx
* curl -i https://lust.scathach.id/xhamster/related?id=videos/horny-makima-tests-new-toy-and-cums-intensely-xhAa5wx
*
* @apiExample {js} JS/TS
* import axios from "axios"
*
* axios.get("https://lust.sinkaroid.org/xhamster/related?id=videos/horny-makima-tests-new-toy-and-cums-intensely-xhAa5wx")
* axios.get("https://lust.scathach.id/xhamster/related?id=videos/horny-makima-tests-new-toy-and-cums-intensely-xhAa5wx")
* .then(res => console.log(res.data))
* .catch(err => console.error(err))
*
* @apiExample {python} Python
* import aiohttp
* async with aiohttp.ClientSession() as session:
* async with session.get("https://lust.sinkaroid.org/xhamster/related?id=videos/horny-makima-tests-new-toy-and-cums-intensely-xhAa5wx") as resp:
* async with session.get("https://lust.scathach.id/xhamster/related?id=videos/horny-makima-tests-new-toy-and-cums-intensely-xhAa5wx") as resp:
* print(await resp.json())
*/

Expand Down
6 changes: 3 additions & 3 deletions src/controller/xhamster/xhamsterRandom.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,19 @@ export async function randomXhamster(req: Request, res: Response) {
* HTTP/1.1 400 Bad Request
*
* @apiExample {curl} curl
* curl -i https://lust.sinkaroid.org/xhamster/random
* curl -i https://lust.scathach.id/xhamster/random
*
* @apiExample {js} JS/TS
* import axios from "axios"
*
* axios.get("https://lust.sinkaroid.org/xhamster/random")
* axios.get("https://lust.scathach.id/xhamster/random")
* .then(res => console.log(res.data))
* .catch(err => console.error(err))
*
* @apiExample {python} Python
* import aiohttp
* async with aiohttp.ClientSession() as session:
* async with session.get("https://lust.sinkaroid.org/xhamster/random") as resp:
* async with session.get("https://lust.scathach.id/xhamster/random") as resp:
* print(await resp.json())
*/
const resolve = await lust.fetchBody(`${c.XHAMSTER}/newest`);
Expand Down
8 changes: 4 additions & 4 deletions src/controller/xhamster/xhamsterSearch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,20 @@ export async function searchXhamster(req: Request, res: Response) {
* HTTP/1.1 400 Bad Request
*
* @apiExample {curl} curl
* curl -i https://lust.sinkaroid.org/xhamster/search?key=milf
* curl -i https://lust.sinkaroid.org/xhamster/search?key=milf&page=2
* curl -i https://lust.scathach.id/xhamster/search?key=milf
* curl -i https://lust.scathach.id/xhamster/search?key=milf&page=2
*
* @apiExample {js} JS/TS
* import axios from "axios"
*
* axios.get("https://lust.sinkaroid.org/xhamster/search?key=milf")
* axios.get("https://lust.scathach.id/xhamster/search?key=milf")
* .then(res => console.log(res.data))
* .catch(err => console.error(err))
*
* @apiExample {python} Python
* import aiohttp
* async with aiohttp.ClientSession() as session:
* async with session.get("https://lust.sinkaroid.org/xhamster/search?key=milf") as resp:
* async with session.get("https://lust.scathach.id/xhamster/search?key=milf") as resp:
* print(await resp.json())
*/

Expand Down
6 changes: 3 additions & 3 deletions src/controller/xnxx/xnxxGet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,19 @@ export async function getXnxx(req: Request, res: Response) {
* HTTP/1.1 400 Bad Request
*
* @apiExample {curl} curl
* curl -i https://lust.sinkaroid.org/xnxx/get?id=video-17vah71a/makima_y_denji
* curl -i https://lust.scathach.id/xnxx/get?id=video-17vah71a/makima_y_denji
*
* @apiExample {js} JS/TS
* import axios from "axios"
*
* axios.get("https://lust.sinkaroid.org/xnxx/get?id=video-17vah71a/makima_y_denji")
* axios.get("https://lust.scathach.id/xnxx/get?id=video-17vah71a/makima_y_denji")
* .then(res => console.log(res.data))
* .catch(err => console.error(err))
*
* @apiExample {python} Python
* import aiohttp
* async with aiohttp.ClientSession() as session:
* async with session.get("https://lust.sinkaroid.org/xnxx/get?id=video-17vah71a/makima_y_denji") as resp:
* async with session.get("https://lust.scathach.id/xnxx/get?id=video-17vah71a/makima_y_denji") as resp:
* print(await resp.json())
*/

Expand Down
6 changes: 3 additions & 3 deletions src/controller/xnxx/xnxxGetRelated.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,19 @@ export async function relatedXnxx(req: Request, res: Response) {
* HTTP/1.1 400 Bad Request
*
* @apiExample {curl} curl
* curl -i https://lust.sinkaroid.org/xnxx/related?id=video-17vah71a/makima_y_denji
* curl -i https://lust.scathach.id/xnxx/related?id=video-17vah71a/makima_y_denji
*
* @apiExample {js} JS/TS
* import axios from "axios"
*
* axios.get("https://lust.sinkaroid.org/xnxx/related?id=video-17vah71a/makima_y_denji")
* axios.get("https://lust.scathach.id/xnxx/related?id=video-17vah71a/makima_y_denji")
* .then(res => console.log(res.data))
* .catch(err => console.error(err))
*
* @apiExample {python} Python
* import aiohttp
* async with aiohttp.ClientSession() as session:
* async with session.get("https://lust.sinkaroid.org/xnxx/related?id=video-17vah71a/makima_y_denji") as resp:
* async with session.get("https://lust.scathach.id/xnxx/related?id=video-17vah71a/makima_y_denji") as resp:
* print(await resp.json())
*/

Expand Down
6 changes: 3 additions & 3 deletions src/controller/xnxx/xnxxRandom.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,19 @@ export async function randomXnxx(req: Request, res: Response) {
* HTTP/1.1 400 Bad Request
*
* @apiExample {curl} curl
* curl -i https://lust.sinkaroid.org/xnxx/random
* curl -i https://lust.scathach.id/xnxx/random
*
* @apiExample {js} JS/TS
* import axios from "axios"
*
* axios.get("https://lust.sinkaroid.org/xnxx/random")
* axios.get("https://lust.scathach.id/xnxx/random")
* .then(res => console.log(res.data))
* .catch(err => console.error(err))
*
* @apiExample {python} Python
* import aiohttp
* async with aiohttp.ClientSession() as session:
* async with session.get("https://lust.sinkaroid.org/xnxx/random") as resp:
* async with session.get("https://lust.scathach.id/xnxx/random") as resp:
* print(await resp.json())
*/
const resolve = await lust.fetchBody("https://www.xnxx.com/search/random/random");
Expand Down
8 changes: 4 additions & 4 deletions src/controller/xnxx/xnxxSearch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,20 @@ export async function searchXnxx(req: Request, res: Response) {
* HTTP/1.1 400 Bad Request
*
* @apiExample {curl} curl
* curl -i https://lust.sinkaroid.org/xnxx/search?key=milf
* curl -i https://lust.sinkaroid.org/xnxx/search?key=milf&page=2
* curl -i https://lust.scathach.id/xnxx/search?key=milf
* curl -i https://lust.scathach.id/xnxx/search?key=milf&page=2
*
* @apiExample {js} JS/TS
* import axios from "axios"
*
* axios.get("https://lust.sinkaroid.org/xnxx/search?key=milf")
* axios.get("https://lust.scathach.id/xnxx/search?key=milf")
* .then(res => console.log(res.data))
* .catch(err => console.error(err))
*
* @apiExample {python} Python
* import aiohttp
* async with aiohttp.ClientSession() as session:
* async with session.get("https://lust.sinkaroid.org/xnxx/search?key=milf") as resp:
* async with session.get("https://lust.scathach.id/xnxx/search?key=milf") as resp:
* print(await resp.json())
*/

Expand Down
6 changes: 3 additions & 3 deletions src/controller/xvideos/xvideosGet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,19 @@ export async function getXvideos(req: Request, res: Response) {
* HTTP/1.1 400 Bad Request
*
* @apiExample {curl} curl
* curl -i https://lust.sinkaroid.org/xvideos/get?id=video73564387/cute_hentai_maid_with_pink_hair_fucking_uncensored_
* curl -i https://lust.scathach.id/xvideos/get?id=video73564387/cute_hentai_maid_with_pink_hair_fucking_uncensored_
*
* @apiExample {js} JS/TS
* import axios from "axios"
*
* axios.get("https://lust.sinkaroid.org/xvideos/get?id=video73564387/cute_hentai_maid_with_pink_hair_fucking_uncensored_")
* axios.get("https://lust.scathach.id/xvideos/get?id=video73564387/cute_hentai_maid_with_pink_hair_fucking_uncensored_")
* .then(res => console.log(res.data))
* .catch(err => console.error(err))
*
* @apiExample {python} Python
* import aiohttp
* async with aiohttp.ClientSession() as session:
* async with session.get("https://lust.sinkaroid.org/xvideos/get?id=video73564387/cute_hentai_maid_with_pink_hair_fucking_uncensored_") as resp:
* async with session.get("https://lust.scathach.id/xvideos/get?id=video73564387/cute_hentai_maid_with_pink_hair_fucking_uncensored_") as resp:
* print(await resp.json())
*/

Expand Down
Loading

0 comments on commit 5cf38dc

Please sign in to comment.