mirror of
https://gitee.com/johng/gf
synced 2026-07-06 13:42:46 +08:00
15 lines
264 B
Go
15 lines
264 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
)
|
|
|
|
func main() {
|
|
//t, err := gtime.StrToTime("2018-01-02 13:08:01")
|
|
//fmt.Println(err)
|
|
//fmt.Println(t.Format("3:4"))
|
|
//fmt.Println(time.Now().Format(".000"))
|
|
fmt.Println(time.Now().Format(".000"))
|
|
}
|