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/songqueue.go
2014-12-14 21:37:55 -08:00

16 lines
229 B
Go

/*
* MumbleDJ
* By Matthieu Grieger
* songqueue.go
* Copyright (c) 2014 Matthieu Grieger (MIT License)
*/
package main
type SongQueue struct {
songs []Song
}
func NewSongQueue() *SongQueue {
return &SongQueue{}
}