This commit is contained in:
邹宗楠
2023-04-28 15:10:12 +08:00
parent 2ce4bee032
commit 6a74908f72
2 changed files with 10 additions and 3 deletions

View File

@@ -2,8 +2,10 @@ package uinapp
import (
"fmt"
"git.rosy.net.cn/baseapi/utils"
"git.rosy.net.cn/jx-callback/globals"
"testing"
"time"
)
var (
@@ -59,3 +61,8 @@ func TestCidSend(t *testing.T) {
})
fmt.Println(err)
}
func TestTime(t *testing.T) {
timestamp := utils.Int64ToStr(time.Now().UnixNano() / 1e6)
fmt.Println(timestamp)
}