From ce53599ba79d1659176b95845b69f8bfd9594726 Mon Sep 17 00:00:00 2001 From: pomidorry Date: Wed, 6 May 2026 23:11:51 +0300 Subject: [PATCH] fix linters --- modules/structs/repo.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/structs/repo.go b/modules/structs/repo.go index 626c35f9e4..44486cd9cd 100644 --- a/modules/structs/repo.go +++ b/modules/structs/repo.go @@ -125,12 +125,12 @@ type Repository struct { // ObjectFormatName of the underlying git repository ObjectFormatName ObjectFormatName `json:"object_format_name"` // swagger:strfmt date-time - MirrorUpdated time.Time `json:"mirror_updated"` + MirrorUpdated time.Time `json:"mirror_updated"` // swagger:strfmt date-time - LastSync time.Time `json:"last_sync"` - RepoTransfer *RepoTransfer `json:"repo_transfer,omitempty"` - Topics []string `json:"topics"` - Licenses []string `json:"licenses"` + LastSync time.Time `json:"last_sync"` + RepoTransfer *RepoTransfer `json:"repo_transfer,omitempty"` + Topics []string `json:"topics"` + Licenses []string `json:"licenses"` } // CreateRepoOption options when creating repository