Something like ```go type CommitAuthor struct { Name string Email string Username string } ``` So the `Commit` will look like ```go type Commit struct { Category string Scope string Breaking bool Heading string Body string Hash Hash Author CommitAuthor Issues []int } ```