16 lines
340 B
JavaScript
16 lines
340 B
JavaScript
import { createLink } from "./api.js";
|
|
|
|
async function add() {
|
|
const token = "IL_TUO_TOKEN";
|
|
|
|
const fileInput = document.querySelector("#iconInput");
|
|
const iconFile = fileInput.files[0];
|
|
|
|
const link = await createLink(token, {
|
|
name: "Google",
|
|
url: "https://google.com",
|
|
iconFile
|
|
});
|
|
|
|
console.log("Creato:", link);
|
|
}
|