zachlatta / personal-kv

Really simple (and dump) key-value store accessible via a simple API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

personal-kv

Really simple (and dump) key-value store accessible via a simple API. I'm using it to serialize data between iOS Shortcuts actions.

Usage

Set a key:

POST /

{
  "action": "set",
  "key": "foo",
  "val": "bar"
}

Get a key:

POST /

{
  "action": "get",
  "key": "foo"
}

About

Really simple (and dump) key-value store accessible via a simple API


Languages

Language:Go 100.0%