Microservice for storing content with loki
Read from or write to store
Returns values from a key
$ curl -v http://localhost:3000/{key}
Saves data to a store
Required input: key, type and data
{
key: '<key>'
type: 'type',
data: [
'role1',
'role2',
'role3'
]
}
$ curl -d '{"key":"info", "type":"content", "data":{"user": "gasg", "type": "news", "list": ["aws"]}}' -v http://localhost:3000