注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
Fri, Apr 10, 2015 Go’s encoding/json package makes it really easy to marshal structs to JSON data... Fri, Apr 10, 2015 Go’s encoding/json package makes it really easy to marshal structs to JSON data. package main import ( "encoding/json" "os" "time" ) type MyUser struct { ID int64 `json:"id"` Name string `json:"name"` LastSeen time.Time `json:"lastSeen"` } func main() { _ = json.NewEncoder(os.Stdout).Encode( &MyUser{1, "Ken", time.Now()}, ) }
2017/06/24 リンク