Skip to content

SarahLightBourne/okay

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

key value storage is okay

go run main.go

set value 'content' to 'mykey'

curl -X POST 'http://127.0.0.1:8021/mykey' --data-raw 'content'

get value of key 'mykey'

curl -X GET 'http://127.0.0.1:8021/mykey'

delete value of key 'mykey'

curl -X DELETE 'http://127.0.0.1:8021/mykey'