Storage
Store user data using our Storage API
Set
You can store a specific value using .set
function from Storage API. Here is an example:
Value could be either string
or json
.
Get
You can get the value from bot storage using .get
function. Here is an example:
If the value is stored in JSON it will be parsed automaticaly.
Delete
You can delete a specific value using .del
function from Storage API. Here is an example:
Last updated