random-bunny/app.ts

9 lines
153 B
TypeScript
Raw Normal View History

2021-12-01 20:32:20 +00:00
import randomBunny from "./src";
async function app() {
const result = await randomBunny('rabbits', 'hot', 100);
console.log(result);
}
app();