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');