#25 new: sftp upload

This commit is contained in:
lollipopkit
2023-05-30 19:49:54 +08:00
parent a1e80fd806
commit 92ffed6541
25 changed files with 409 additions and 177 deletions

View File

@@ -18,7 +18,8 @@ class PrivateKeyStore extends PersistentStore {
return ps;
}
PrivateKeyInfo get(String id) {
PrivateKeyInfo? get(String? id) {
if (id == null) return null;
return box.get(id);
}