mirror of
https://github.com/tribufu/tribufu-js
synced 2026-05-18 09:35:44 +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();
|