From f95b359c30996681276c50f56390cb9243bec540 Mon Sep 17 00:00:00 2001 From: pomidorry Date: Wed, 6 May 2026 22:14:42 +0300 Subject: [PATCH] linter fix --- 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 b8f164b455..29c49146e9 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 - LastPullSyncSuccess time.Time `json:"last_pull_sync_success"` - RepoTransfer *RepoTransfer `json:"repo_transfer,omitempty"` - Topics []string `json:"topics"` - Licenses []string `json:"licenses"` + LastPullSyncSuccess time.Time `json:"last_pull_sync_success"` + RepoTransfer *RepoTransfer `json:"repo_transfer,omitempty"` + Topics []string `json:"topics"` + Licenses []string `json:"licenses"` } // CreateRepoOption options when creating repository