mirror of
https://github.com/strongdm/comply
synced 2024-11-05 15:35:25 +00:00
7 lines
87 B
Go
7 lines
87 B
Go
|
package main
|
||
|
|
||
|
type Commit struct {
|
||
|
Sha string `json:"sha"`
|
||
|
Url string `json:"url"`
|
||
|
}
|