9 lines
179 B
Go
9 lines
179 B
Go
package utils
|
|
|
|
import "fmt"
|
|
|
|
func formatDuration(totalSeconds int64) string {
|
|
mins := totalSeconds / 60
|
|
secs := totalSeconds % 60
|
|
return fmt.Sprintf("%02d:%02d", mins, secs)
|
|
}
|