Files
bluekeyes-go-gitdiff/gitdiff/gitdiff.go
T
2019-03-10 21:48:59 -07:00

11 lines
259 B
Go

package gitdiff
// File describes changes to a single file. It can be either a text file or a
// binary file.
type File struct {
Fragments []*Fragment
}
// Fragment describes changed lines starting at a specific line in a text file.
type Fragment struct{}