Flatlogic Bot ca3a32f23e V 4
2026-02-16 06:55:36 +00:00

8 lines
290 B
TypeScript

import SoundCloud from "./soundcloud"
require("dotenv").config()
const soundcloud = new SoundCloud();
(async () => {
const result = await soundcloud.util.downloadTrack("https://soundcloud.com/5tereomanjpn/aire-tea-timestereoman-remix", "./tracks/test.mp3")
console.log(result)
})()