mirror of
https://github.com/AynaLivePlayer/AynaLivePlayer.git
synced 2025-12-06 10:22:50 +08:00
8 lines
116 B
Go
8 lines
116 B
Go
package util
|
|
|
|
import "fmt"
|
|
|
|
func FormatTime(time int) string {
|
|
return fmt.Sprintf("%01d:%02d", time/60, time%60)
|
|
}
|