chatgpt-plugin/client/test/SunoClientTest.js

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()