15 lines
193 B
Go
Raw Permalink Normal View History

2024-10-24 22:08:43 +08:00
package test
import (
"fmt"
"testing"
"time"
)
func TestTimeNow(t *testing.T) {
now := time.Now()
curYearMonth := now.In(time.Local).Format("2006_01")
fmt.Println(now, curYearMonth)
}