mirror of
https://github.com/ikechan8370/chatgpt-plugin.git
synced 2025-12-16 21:37:11 +00:00
11 lines
213 B
JavaScript
11 lines
213 B
JavaScript
import { SunoClient } from '../SunoClient.js'
|
|
|
|
async function test () {
|
|
const options = {
|
|
}
|
|
let client = new SunoClient(options)
|
|
let res = await client.createSong('guacamole')
|
|
console.log(res)
|
|
}
|
|
|
|
test()
|