mirror of
https://github.com/AynaLivePlayer/AynaLivePlayer.git
synced 2025-12-08 03:12:50 +08:00
11 lines
116 B
Go
11 lines
116 B
Go
package util
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestFormatTime(t *testing.T) {
|
|
fmt.Println(FormatTime(60 * 60))
|
|
}
|