Files
cell/tests/http.ce
2025-06-06 09:22:56 -05:00

13 lines
345 B
Plaintext

var http = use('http')
var text = use('text')
try {
var b2 = http.fetch("https://gitea.pockle.world/api/v1/repos/john/prosperon/branches/master")
log.console(b2.length)
var text2 = text(b2)
log.console(text(b2))
$_.stop()
send(arg[0], {test:'http', result:'pass'})
} catch (e) {
log.console("dictionary error:", e)
}