blob: 722cbb87d7616ad68221cfa3e85043462ef142c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package models
type GitHubLeadResult struct {
Repository string `json:"repository"`
Author string `json:"author"`
Email string `json:"email"`
Commit string `json:"commit"`
Date string `json:"date"`
Message string `json:"message"`
}
type GitHubLeadsStreamResponse struct {
Lead GitHubLeadResult `json:"lead"`
}
|