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

https://github.com/zztkm/echo-logging-request-body-middleware


https://github.com/zztkm/echo-logging-request-body-middleware

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

# Echo middleware for logging request bodies

run server
```shell
go run main.go
```

example request
```shell
curl --location --request POST 'http://localhost:1323' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "zztkm",
"age": 24
}'
```