mirror of
https://github.com/Tribufu/TribufuJS
synced 2026-08-07 11:56:20 +00:00
12 lines
289 B
JavaScript
12 lines
289 B
JavaScript
// Copyright (c) Tribufu. All Rights Reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
import { HttpClient } from '../build/index.mjs';
|
|
|
|
async function main() {
|
|
const http = new HttpClient();
|
|
const reponse = await http.get('https://www.tribufu.com');
|
|
console.log(reponse);
|
|
}
|
|
|
|
main();
|