UNPKG

ztobp.js

Version:

A bot framework for custom bots in chat rooms.

11 lines (10 loc) 286 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.fetchData = void 0; // src/utils/api.ts async function fetchData(url) { const response = await fetch(url); const data = await response.json(); return data; } exports.fetchData = fetchData;