Skip to content
Snippets Groups Projects

Create SET cache endpoint

Merged Yordan Kinkov requested to merge 3-implement-cache-set-endpoint into main
3 files
+ 6
6
Compare changes
  • Side-by-side
  • Inline
Files
3
  • 0244a381
    #3 change GET endpoint response type to json · 0244a381
    Yordan Kinkov authored
+ 2
2
@@ -41,10 +41,10 @@ var _ = Service("cache", func() {
Description("Cache service allows storing and retrieving data from distributed cache.")
Method("Get", func() {
Description("Get value from the cache. The result is a sequence of bytes which the client must decode.")
Description("Get JSON value from the cache.")
Payload(CacheGetRequest)
Result(Bytes)
Result(Any)
HTTP(func() {
GET("/v1/cache")
Loading