mirror of
https://github.com/aditya-K2/gspt.git
synced 2026-01-09 13:58:05 -05:00
9 lines
200 B
Go
9 lines
200 B
Go
package spt
|
|
|
|
import "github.com/zmb3/spotify/v2"
|
|
|
|
func AddTracksToPlaylist(playlistId spotify.ID, t ...spotify.ID) error {
|
|
_, err := Client.AddTracksToPlaylist(ctx(), playlistId, t...)
|
|
return err
|
|
}
|