Files
go-gui/radioparadise.go
2024-06-03 00:14:40 +02:00

17 lines
385 B
Go

package main
import (
"fmt"
// "time"
)
func printFormattedSong(record *Record) string {
// time := record.Time
text := fmt.Sprintf("Now playing on RP:\n\nTitle: %v\nArtist: %v\nAlbum: %v\nYear: %v\n", record.Title, record.Artist, record.Album, record.Year)
return text
}
//func printFormattedTime(record *Record) Time {
// remainingTime := record.Time // in seconds
//}