Merge mintaka lib

This commit is contained in:
2024-03-06 19:39:31 -03:00
parent b4d074420a
commit c6136b6e21
15 changed files with 747 additions and 23 deletions

12
examples/http.js Normal file
View File

@ -0,0 +1,12 @@
// 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();