feat: add history parse

This commit is contained in:
ᴍᴏᴏɴD4ʀᴋ
2020-06-22 17:23:18 +08:00
parent 000c4fe583
commit 7e472c5cee
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)
}