This repository has been archived on 2019-06-23. You can view files and clone it, but cannot push or open issues or pull requests.
mumbledj/services/youtube/song.go

24 lines
410 B
Go
Raw Normal View History

2015-04-09 03:44:22 +02:00
/*
* MumbleDJ
* By Matthieu Grieger
* services/youtube/song.go
* Copyright (c) 2014, 2015 Matthieu Grieger (MIT License)
*/
package youtube
type Song struct {
2015-04-09 03:47:39 +02:00
submitter string
title string
id string
duration string
thumbnailUrl string
skippers []string
playlist *Playlist
dontSkip bool
2015-04-09 03:44:22 +02:00
}
func NewSong(user, id string, playlist *Playlist) (*Song, error) {
}