Work in progress zip import/export.

git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@4287 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
2023-05-10 01:30:15 +00:00
parent 706bd2c51f
commit 7da7890bb6
6 changed files with 133 additions and 1 deletions

View File

@ -79,6 +79,9 @@ tfrpc.register(async function store_blob(blob) {
tfrpc.register(async function get_blob(id) {
return utf8Decode(await ssb.blobGet(id));
});
tfrpc.register(async function store_message(message) {
return await ssb.storeMessage(message);
});
tfrpc.register(function apps() {
return core.apps();
});