mirror of
https://github.com/AynaLivePlayer/AynaLivePlayer.git
synced 2026-03-15 22:13:17 +08:00
9 lines
178 B
Go
9 lines
178 B
Go
package util
|
|
|
|
import "fmt"
|
|
|
|
// FormatTime formats time in seconds to string in format "m:ss"
|
|
func FormatTime(sec int) string {
|
|
return fmt.Sprintf("%01d:%02d", sec/60, sec%60)
|
|
}
|