Here goes the title
Description
#JAVA
#SPRING
Maintained by [email protected] [Aniruddha Shivananda]
This project provides the backend service necessary for the cashcard API.
Default Java Version - 22.
1.I have taken TDD(Test Driven Development) approach on development of the project this is mainly because by asserting expected behavior before implementing the desired functionality, we’re designing the system based on what we want it to do, rather than what the system already does.
HTTP Method | API Endpoint | Response Status |
---|---|---|
POST |
/cashcards | 201 (CREATED) |
GET |
/cashcards/{id} | 200 (OK) |
PUT |
/cashcards/{id} | 204 (NO CONTENT) |
DELETE |
/cashcards/{id} | 204 (NO CONTENT) |
|
Aniruddha Shivananda: [email protected]