Files
hakorune/local_tests/test_http_minimal.hako

14 lines
275 B
Plaintext

// HttpClientBox最小テスト
static box Main {
init { http }
main() {
me.http = new HttpClientBox()
// GET test
local result = me.http.get("https://httpbin.org/get")
print(result)
return "done"
}
}