Example #1
0
File: get.go Project: bogem/vnehm
func getLastTracks(count uint) ([]track.Track, error) {
	return client.Audios(count, offset, config.Get("token"))
}
Example #2
0
File: list.go Project: bogem/vnehm
func listGetTracks(offset uint) ([]track.Track, error) {
	return client.Audios(limit, offset, config.Get("token"))
}