PHPのtime() -> Golang に変換

1.PHP

$t = time();

2.Golang

const DATE_FORMAT = "2006-01-02 15:04:05";

t := time.Now().Format(DATE_FORMAT);