lastfm-wrapped/commands/api.js

12 lines
251 B
JavaScript
Raw Normal View History

2021-12-02 02:36:11 +00:00
import { callApi } from "../lib/lastfm.js"
const api = (username, method, args, options) => {
callApi(method, {
username: username,
...JSON.parse(args)
}).then((data) => {
console.log(data)
})
}
export default api