Go で超シンプルな JSON API を作成します。 基礎的な内容ですが、応用が効くと思います😊 この記事は package main import ( "bytes" "encoding/json" "fmt" "log" "net/http" "time" ) type Task struct { ID int `json:"id"` Title string `json:"title"` Content string `json:"content"` DueDate time.Time `json:"due_date"` } var tasks = []Task{{ ID: 1, Title: "A", Content: "Aタスク", DueDate: time.Now(), }, { ID: 2, Title: "B", Content: "Bタスク", DueDate: t