Fix 'add' to 'create' (:

This commit is contained in:
fullgream 2025-08-16 18:01:35 +03:00
parent 8e3d83cc43
commit 4bc17d156d

View File

@ -24,6 +24,7 @@ class APIMethods {
info (con, req, cb) { info (con, req, cb) {
const serverInfo = require("./server-info"); const serverInfo = require("./server-info");
cb({ result: serverInfo, trace_id: req.trace_id, ended: true }); cb({ result: serverInfo, trace_id: req.trace_id, ended: true });
} }
@ -88,7 +89,7 @@ class API {
} }
decrypt (address, bytes) { decrypt (address, bytes) {
throw new Error("Deprecated. Use TLS. If you see this error, please, add issue into: https://git.fullgream.tech/fullgream/ai-adventure-labs/issues"); throw new Error("Deprecated. Use TLS. If you see this error, please, create issue into: https://git.fullgream.tech/fullgream/ai-adventure-labs/issues");
} }
async exec (connection, bytes, cb) { async exec (connection, bytes, cb) {