list := sp.Web().GetList("Lists/MyList")
item := list.Items().GetByID(1)
attachments, err := item.Attachments().Get()
for _, attachment := range attachments.Data() {
data := attachment.Data()
fmt.Printf("%s (%s)\n", data.FileName, data.ServerRelativeURL)