12 lines
178 B
Go
12 lines
178 B
Go
package spec
|
|
|
|
import "senan.xyz/g/gonic/model"
|
|
|
|
func NewPlaylist(p *model.Playlist) *Playlist {
|
|
return &Playlist{
|
|
ID: p.ID,
|
|
Name: p.Name,
|
|
Comment: p.Comment,
|
|
}
|
|
}
|