Start initial phase

This commit is contained in:
2024-06-03 00:14:40 +02:00
commit 9676daac0a
7 changed files with 838 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
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
//}