package util1 import ( "fmt" "time" ) func Println(content string) { fmt.Printf("[%s]:%s\n", time.Now(), content) }