Update index.js
Browse files
index.js
CHANGED
@@ -102,6 +102,15 @@ app.get('/api/v1/hentai-anime', async (req, res) => {
|
|
102 |
}
|
103 |
});
|
104 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
105 |
app.get('/api/v1/tebakgambar', async (req, res) => {
|
106 |
try {
|
107 |
const result = await tebakgambar();
|
@@ -115,6 +124,15 @@ app.get('/api/v1/tebakgambar', async (req, res) => {
|
|
115 |
}
|
116 |
});
|
117 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
app.get('/api/v1/gpt-old', async (req, res) => {
|
119 |
try {
|
120 |
const query = req.query.query;
|
|
|
102 |
}
|
103 |
});
|
104 |
|
105 |
+
/**
|
106 |
+
* @openapi
|
107 |
+
* /api/v1/tebakgambar:
|
108 |
+
* get:
|
109 |
+
* summary: Tebak Gambar
|
110 |
+
* responses:
|
111 |
+
* 200:
|
112 |
+
* description: Success
|
113 |
+
*/
|
114 |
app.get('/api/v1/tebakgambar', async (req, res) => {
|
115 |
try {
|
116 |
const result = await tebakgambar();
|
|
|
124 |
}
|
125 |
});
|
126 |
|
127 |
+
/**
|
128 |
+
* @openapi
|
129 |
+
* /api/v1/gpt-old:
|
130 |
+
* get:
|
131 |
+
* summary: GPT OLD version turbo
|
132 |
+
* responses:
|
133 |
+
* 200:
|
134 |
+
* description: Success
|
135 |
+
*/
|
136 |
app.get('/api/v1/gpt-old', async (req, res) => {
|
137 |
try {
|
138 |
const query = req.query.query;
|