13 lines
285 B
Go
13 lines
285 B
Go
package utils
|
|
|
|
import "fmt"
|
|
|
|
// FormatDuration wandelt Sekunden in einen MM:SS String um.
|
|
func FormatDuration(totalSeconds int64) string {
|
|
if totalSeconds < 0 {
|
|
totalSeconds = 0
|
|
}
|
|
mins := totalSeconds / 60
|
|
secs := totalSeconds % 60
|
|
return fmt.Sprintf("%02d:%02d", mins, secs)
|
|
}
|