-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmodule.js
51 lines (47 loc) · 1.98 KB
/
module.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/**
Tools Betabotz
**/
///====================[ Ai ]============\\
const { remini } = require('./tools/ai/remini.js')
const { removebg } = require('./tools/ai/removebg.js')
const { toanime } = require('./tools/ai/toanime.js')
const { tozombie } = require('./tools/ai/tozombie.js')
module.exports.remini = remini
module.exports.removebg = removebg
module.exports.toanime = toanime
module.exports.tozombie = tozombie
//=================[ Other Feature]=========\\
const { openai } = require('./tools/ai/openai.js')
const { aio } = require('./tools/download/aio.js')
const { capcut } = require('./tools/download/capcut.js')
const { douyin } = require('./tools/download/douyin.js')
const { facebook } = require('./tools/download/facebook.js')
const { instagram } = require('./tools/download/instagram.js')
const { pinterest } = require('./tools/download/pinterest.js')
const { spotifydl } = require('./tools/download/spotify.js')
const { spotify } = require('./tools/search/spotify.js')
const { stalkig } = require('./tools/stalk/ig.js')
const { threads } = require('./tools/download/threads.js')
const { tiktok } = require('./tools/download/tiktok.js')
const { twitter } = require('./tools/download/twitter.js')
const { xvideosdl } = require('./tools/download/xvideosdl.js')
const { xnxxdl } = require('./tools/download/xnxxdl.js')
const { xvideoss } = require('./tools/download/xvideoss.js')
const { xnxxs } = require('./tools/download/xnxxs.js')
module.exports.openai = openai;
module.exports.aio = aio;
module.exports.capcut = capcut;
module.exports.douyin = douyin;
module.exports.facebook = facebook;
module.exports.instagram = instagram;
module.exports.pinterest = pinterest;
module.exports.spotifydl = spotifydl;
module.exports.spotify = spotify;
module.exports.stalkig = stalkig;
module.exports.threads = threads;
module.exports.tiktok = tiktok;
module.exports.twitter = twitter;
module.exports.xvideosdl = xvideosdl;
module.exports.xnxxdl = xnxxdl;
module.exports.xvideoss = xvideoss;
module.exports.xnxxs = xnxxs;