├── .gitignore ├── controller ├── all.js ├── id.js └── post.js ├── db.js ├── index.js ├── models └── Post.js ├── package.json └── routes └── post.js /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules -------------------------------------------------------------------------------- /controller/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/Post_model_api/HEAD/controller/all.js -------------------------------------------------------------------------------- /controller/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/Post_model_api/HEAD/controller/id.js -------------------------------------------------------------------------------- /controller/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/Post_model_api/HEAD/controller/post.js -------------------------------------------------------------------------------- /db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/Post_model_api/HEAD/db.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/Post_model_api/HEAD/index.js -------------------------------------------------------------------------------- /models/Post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/Post_model_api/HEAD/models/Post.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/Post_model_api/HEAD/package.json -------------------------------------------------------------------------------- /routes/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adityaadpandey/Post_model_api/HEAD/routes/post.js --------------------------------------------------------------------------------