This commit is contained in:
yanweidong
2026-01-21 17:13:37 +08:00
parent e279299bf3
commit c589839e12
5 changed files with 69 additions and 38 deletions

14
cmd/test/main.go Normal file
View File

@@ -0,0 +1,14 @@
package main
import (
"fmt"
"time"
)
func main() {
t, err := time.Parse("20060102", "20230101")
if err != nil {
fmt.Println("error", err)
}
fmt.Println(t)
}