Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/leylahosseini/boilerplate-echo-gorm-postgres

Boilerplate Echo Gorm Postgres
https://github.com/leylahosseini/boilerplate-echo-gorm-postgres

crud crud-operation echo echo-framework gorm postgres

Last synced: 3 days ago
JSON representation

Boilerplate Echo Gorm Postgres

Awesome Lists containing this project

README

        

# Echo Gorm Postgres

#### This project is basically made for Golang, which uses [Echo](https://github.com/labstack/echo) Gorm and Postgres ,which includes the CRUD operation.

####

curl -X POST localhost:8080/tasks -d '{"name":"task1" , "description":"task1" , "completed":true}' --header "Content-Type: application/json"

curl -X PUT localhost:8080/tasks/:id -d '{"name":"task1" , "description":"task1" , "completed":true}' --header "Content-Type: application/json"

curl -X DELETE localhost:8080/tasks/:id

curl -X GET localhost:8080/tasks