11 lines
284 B
Plaintext
11 lines
284 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))
|
|
} catch (e) {
|
|
log.console("dictionary error:", e)
|
|
} |