feat: Phase 1 — 项目骨架搭建,集成 Gin、SQLite 和设置页面
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
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"`
|
||||
}
|
||||
Reference in New Issue
Block a user