prefetch main repo metadata
1 file changed, 13 insertions(+), 6 deletions(-)
changed files
M data/entries.go → data/entries.go
@@ -3,15 +3,22 @@ import ( "sort" "time" + + "alin.ovh/elgit/git" ) type Repository struct { - Name string - Category string - Path string - Slug string - Description string - LastCommit time.Time + Name string + Category string + Path string + Slug string + Description string + LastCommit time.Time + LastCommits []*git.CommitReference + ReadmeContent string + MainBranch string + Gomod bool + *git.Repo } type Entry struct {