├── .github └── workflows │ └── bohr.yml ├── .gitignore ├── README.md ├── dist ├── assets │ └── style.css └── index.html ├── language ├── package.json └── src ├── routes ├── result.js └── search.js └── server.js /.github/workflows/bohr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipuldey19/Opensubtitles-Unofficial-API/HEAD/.github/workflows/bohr.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipuldey19/Opensubtitles-Unofficial-API/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipuldey19/Opensubtitles-Unofficial-API/HEAD/README.md -------------------------------------------------------------------------------- /dist/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipuldey19/Opensubtitles-Unofficial-API/HEAD/dist/assets/style.css -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipuldey19/Opensubtitles-Unofficial-API/HEAD/dist/index.html -------------------------------------------------------------------------------- /language: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipuldey19/Opensubtitles-Unofficial-API/HEAD/language -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipuldey19/Opensubtitles-Unofficial-API/HEAD/package.json -------------------------------------------------------------------------------- /src/routes/result.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipuldey19/Opensubtitles-Unofficial-API/HEAD/src/routes/result.js -------------------------------------------------------------------------------- /src/routes/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipuldey19/Opensubtitles-Unofficial-API/HEAD/src/routes/search.js -------------------------------------------------------------------------------- /src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipuldey19/Opensubtitles-Unofficial-API/HEAD/src/server.js --------------------------------------------------------------------------------