summaryrefslogtreecommitdiffstats
path: root/internal/models/github.go
blob: 1c9657c17cedb98648b0882b0c123be611993eb0 (plain)
1
2
3
4
5
6
7
8
9
10
package models

type GitHubLead 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"`
}