Golang にて現在の unixtime を取得する

package main

import (
	"fmt"
	"time"
)

func main() {
	d := time.Now().Unix()
	fmt.Print(d)
}
カテゴリー:Go