mirror of
https://github.com/encounter/decomp.dev.git
synced 2026-07-10 03:18:48 -07:00
19 lines
250 B
Go
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
|
|
}
|