├── .gitignore ├── LICENSE ├── README.md ├── app ├── controller.js ├── index.js ├── mangakakalot.js └── routes.js ├── index.html └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFlyDeveloper/Manga-API/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFlyDeveloper/Manga-API/HEAD/README.md -------------------------------------------------------------------------------- /app/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFlyDeveloper/Manga-API/HEAD/app/controller.js -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFlyDeveloper/Manga-API/HEAD/app/index.js -------------------------------------------------------------------------------- /app/mangakakalot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFlyDeveloper/Manga-API/HEAD/app/mangakakalot.js -------------------------------------------------------------------------------- /app/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFlyDeveloper/Manga-API/HEAD/app/routes.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFlyDeveloper/Manga-API/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFlyDeveloper/Manga-API/HEAD/package.json --------------------------------------------------------------------------------