Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 416 Bytes

File metadata and controls

12 lines (9 loc) · 416 Bytes

Overview

Simple SledDB API service layer. Put a k/v in at an endpoint and retrieve it.

Example

curl -i -X GET -H "Content-Type: application/json" http://localhost:8080/api/foo
curl -i -X PUT -H "Content-Type: application/json" -d '{"bar":"baz"}' http://localhost:8080/api/foo
curl -i -X DELETE -H "Content-Type: application/json" http://localhost:8080/api/foo