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

https://github.com/aveygo/golang-db-api

Simple Golang project that opens an endpoint to store key/value pairs
https://github.com/aveygo/golang-db-api

Last synced: 2 months ago
JSON representation

Simple Golang project that opens an endpoint to store key/value pairs

Awesome Lists containing this project

README

        

# Golang-DB-API
Simple Golang project that opens an endpoint to store key/value pairs
```
go run .
```

Add a pair with the endpoint:

```
localhost:8080/set?key=your_key&value=your_value
```

And retrieve them with:

```
localhost:8080/get?key=your_key
```