Files
2024-08-29 22:37:30 -06:00

19 lines
250 B
Go

package common
import "time"
type Project struct {
ID int64
Owner string
Name string
}
func (p *Project) URL() string {
return "https://github.com/" + p.Owner + "/" + p.Name
}
type Commit struct {
Sha string
Timestamp time.Time
}