Storing Data on CZAR
Storing Data
bashCopy codeczar store path/to/your/file.txtbashCopy codecurl -X POST -H "Content-Type: application/json" -d '{"data": "Your data goes here"}' http://localhost:1984/store
Retrieving Data
bashCopy codeczar retrieve <transaction_id> path/to/destination/file.txtbashCopy codecurl -X GET http://localhost:1984/retrieve/<transaction_id> -o path/to/destination/file.txt
Exploring Advanced Features
Last updated