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

https://github.com/mxssl/pir

A simple app that prints incoming POST requests, created to experiment with the new mux.
https://github.com/mxssl/pir

Last synced: 11 months ago
JSON representation

A simple app that prints incoming POST requests, created to experiment with the new mux.

Awesome Lists containing this project

README

          

# Print Incoming Request

A simple app that prints incoming POST requests, created to experiment with the new mux.

Install

```bash
go install github.com/mxssl/pir@latest
```

Test

```bash
curl \
--url 'localhost:9999' \
--request POST \
--data '{"key":"value"}'
```