├── .gitignore ├── package.json ├── src ├── handlers │ ├── ai.ts │ ├── anime │ │ ├── art.ts │ │ └── wallpaper.ts │ ├── captcha │ │ ├── captcha.ts │ │ └── custom.ts │ ├── joke.ts │ ├── reddit.ts │ └── subHandlers │ │ └── getJoke.ts ├── localDatabase │ └── jokes.json ├── models │ └── auth.ts ├── ratelimit │ └── ratelimit_all.ts ├── routes │ ├── ai.ts │ ├── anime.ts │ ├── captcha.ts │ ├── joke.ts │ └── reddit.ts └── server.ts ├── tsconfig.json ├── website.html └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgamerx/RandomStuffApi/HEAD/.gitignore -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgamerx/RandomStuffApi/HEAD/package.json -------------------------------------------------------------------------------- /src/handlers/ai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgamerx/RandomStuffApi/HEAD/src/handlers/ai.ts -------------------------------------------------------------------------------- /src/handlers/anime/art.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgamerx/RandomStuffApi/HEAD/src/handlers/anime/art.ts -------------------------------------------------------------------------------- /src/handlers/anime/wallpaper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgamerx/RandomStuffApi/HEAD/src/handlers/anime/wallpaper.ts -------------------------------------------------------------------------------- /src/handlers/captcha/captcha.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgamerx/RandomStuffApi/HEAD/src/handlers/captcha/captcha.ts -------------------------------------------------------------------------------- /src/handlers/captcha/custom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgamerx/RandomStuffApi/HEAD/src/handlers/captcha/custom.ts -------------------------------------------------------------------------------- /src/handlers/joke.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgamerx/RandomStuffApi/HEAD/src/handlers/joke.ts -------------------------------------------------------------------------------- /src/handlers/reddit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgamerx/RandomStuffApi/HEAD/src/handlers/reddit.ts -------------------------------------------------------------------------------- /src/handlers/subHandlers/getJoke.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgamerx/RandomStuffApi/HEAD/src/handlers/subHandlers/getJoke.ts -------------------------------------------------------------------------------- /src/localDatabase/jokes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgamerx/RandomStuffApi/HEAD/src/localDatabase/jokes.json -------------------------------------------------------------------------------- /src/models/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgamerx/RandomStuffApi/HEAD/src/models/auth.ts -------------------------------------------------------------------------------- /src/ratelimit/ratelimit_all.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgamerx/RandomStuffApi/HEAD/src/ratelimit/ratelimit_all.ts -------------------------------------------------------------------------------- /src/routes/ai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgamerx/RandomStuffApi/HEAD/src/routes/ai.ts -------------------------------------------------------------------------------- /src/routes/anime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgamerx/RandomStuffApi/HEAD/src/routes/anime.ts -------------------------------------------------------------------------------- /src/routes/captcha.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgamerx/RandomStuffApi/HEAD/src/routes/captcha.ts -------------------------------------------------------------------------------- /src/routes/joke.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgamerx/RandomStuffApi/HEAD/src/routes/joke.ts -------------------------------------------------------------------------------- /src/routes/reddit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgamerx/RandomStuffApi/HEAD/src/routes/reddit.ts -------------------------------------------------------------------------------- /src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgamerx/RandomStuffApi/HEAD/src/server.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgamerx/RandomStuffApi/HEAD/tsconfig.json -------------------------------------------------------------------------------- /website.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgamerx/RandomStuffApi/HEAD/website.html -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgamerx/RandomStuffApi/HEAD/yarn.lock --------------------------------------------------------------------------------