10 lines
96 B
Go
10 lines
96 B
Go
|
package git
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type Author struct {
|
||
|
Name string
|
||
|
Email string
|
||
|
When time.Time
|
||
|
}
|