add history parse

This commit is contained in:
ᴍᴏᴏɴD4ʀᴋ
2020-06-22 17:23:18 +08:00
parent 0101ffa874
commit 44bccb4dc3
9 changed files with 323 additions and 42 deletions
+12
View File
@@ -0,0 +1,12 @@
package utils
import (
"fmt"
"testing"
)
func TestTimeEpochFormat(t *testing.T) {
dateAdded := int64(13220074277028707)
s := TimeEpochFormat(dateAdded)
fmt.Println(s)
}