Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kk3939/gin-lime
gin(Go) sample project
https://github.com/kk3939/gin-lime
gin golang
Last synced: 23 days ago
JSON representation
gin(Go) sample project
- Host: GitHub
- URL: https://github.com/kk3939/gin-lime
- Owner: kk3939
- License: mit
- Created: 2022-12-30T11:39:51.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-07-21T10:17:00.000Z (over 1 year ago)
- Last Synced: 2024-10-21T18:11:49.123Z (24 days ago)
- Topics: gin, golang
- Language: Go
- Homepage:
- Size: 58.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gin-lime
This is gin(Go) sample project.## API
### Error
```json
{
"status": 400,
"message": "Bad Request"
}
```### Todo
- `GET /api/v1/todo`
- get all todo
- `GET /api/v1/todo/:id`
- get todo by id
- `POST /api/v1/todo`
- create todo
- `PUT /api/v1/todo/:id`
- update todo by id
- `DELETE /api/v1/todo/:id`
- delete todo by id### User
- `GET /api/v1/user`
- get all user
- `GET /api/v1/user/:id`
- get user by id
- `POST /api/v1/user`
- create user
- `PUT /api/v1/user/:id`
- update user by id
- `DELETE /api/v1/user/:id`
- delete user by id## License
MIT