From 42b68d5bee1c5f5789097b4643e081fcd565d440 Mon Sep 17 00:00:00 2001 From: narawat Date: Sun, 24 May 2026 11:40:27 +0700 Subject: [PATCH] update --- AI_prompt.md | 12 ++++++++---- test/test_js_mix_payloads_receiver.js | 2 +- test/test_js_mix_payloads_sender.js | 2 +- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/AI_prompt.md b/AI_prompt.md index 5cbb13a..b485996 100644 --- a/AI_prompt.md +++ b/AI_prompt.md @@ -267,10 +267,14 @@ What is the main interface of this package? - - - - +read the following files: +- ./src/msghandler.jl +- ./test/test_julia_mix_payloads_sender.jl +- ./src/msghandler-csr.js +- ./README.md +I want to add: +1) sending jsontable and arrowtable Julia example to README.md +2) sending image and jsontable Javascript(browser) example to README.md diff --git a/test/test_js_mix_payloads_receiver.js b/test/test_js_mix_payloads_receiver.js index 6f79b39..34b4110 100644 --- a/test/test_js_mix_payloads_receiver.js +++ b/test/test_js_mix_payloads_receiver.js @@ -6,7 +6,7 @@ * any combination and any number of mixed content can be received correctly. */ -const msghandler = require('../src/msghandler.js'); +const msghandler = require('../src/msghandler-csr.js'); const nats = require('nats'); const crypto = require('crypto'); diff --git a/test/test_js_mix_payloads_sender.js b/test/test_js_mix_payloads_sender.js index c88eecb..5123c56 100644 --- a/test/test_js_mix_payloads_sender.js +++ b/test/test_js_mix_payloads_sender.js @@ -6,7 +6,7 @@ * any combination and any number of mixed content can be sent correctly. */ -const msghandler = require('../src/msghandler.js'); +const msghandler = require('../src/msghandler-csr.js'); const crypto = require('crypto'); const fs = require('fs'); const path = require('path');