13 lines
287 B
Go
13 lines
287 B
Go
|
|
package models
|
||
|
|
|
||
|
|
import "time"
|
||
|
|
|
||
|
|
type Repository struct {
|
||
|
|
ID int64 `json:"id"`
|
||
|
|
URL string `json:"url"`
|
||
|
|
LocalPath string `json:"local_path"`
|
||
|
|
SizeBytes int64 `json:"size_bytes"`
|
||
|
|
ClonedAt time.Time `json:"cloned_at"`
|
||
|
|
LastUsed time.Time `json:"last_used"`
|
||
|
|
}
|