package main import ( "time" ) type CommitResponse struct { ID string `json:"id"` Timestamp time.Time `json:"timestamp"` } type BranchResponse struct { Name string `json:"name"` Commit CommitResponse `json:"commit"` }