Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
50 additions
and 4 deletions.
@@ -1,4 +1,5 @@ | ||
export const Store = { | ||
get: async (key, type='text') => COVID19.get(key, type), | ||
put: async (key, value) => COVID19.put(key, value) | ||
put: async (key, value) => COVID19.put(key, value), | ||
list: async (prefix, cursor=undefined) => COVID19.list({ prefix, cursor }) | ||
}; |