Skip to content

Commit

Permalink
tweak: 🔧 message
Browse files Browse the repository at this point in the history
  • Loading branch information
ubugeeei committed Oct 15, 2023
1 parent 3a08982 commit 409536a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/ipc/server/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ app.post("/recognize", async c => {

app.post("/recognize-encoded", async c => {
const req = await c.req.json();
console.log(`size: ${req.strokes.length} bytes`);
console.log(`size: ${req.strokes.length} bytes (encoded)`);
const strokes = decodeStroke(req.strokes);
if (strokes instanceof DecodeError) {
return c.json({ error: strokes.message });
Expand Down

0 comments on commit 409536a

Please sign in to comment.