mirror of
https://github.com/AynaLivePlayer/AynaLivePlayer.git
synced 2026-03-15 22:13:17 +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))
|
|
}
|