mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2026-04-19 13:00:20 +00:00
- Go has a suite of small linters that helps with modernizing Go code by using newer functions and catching small mistakes, https://pkg.go.dev/golang.org/x/tools/go/analysis/passes/modernize. - Enable this linter in golangci-lint. - There's also [`go fix`](https://go.dev/blog/gofix), which is not yet released as a linter in golangci-lint: https://github.com/golangci/golangci-lint/pull/6385 Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/11936 Reviewed-by: Mathieu Fenniak <mfenniak@noreply.codeberg.org> Co-authored-by: Gusted <postmaster@gusted.xyz> Co-committed-by: Gusted <postmaster@gusted.xyz>
22 lines
631 B
Go
22 lines
631 B
Go
// Copyright 2015 The Gogs Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package structs
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
// PublicKey publickey is a user key to push code to repository
|
|
type PublicKey struct {
|
|
ID int64 `json:"id"`
|
|
Key string `json:"key"`
|
|
URL string `json:"url,omitempty"`
|
|
Title string `json:"title,omitempty"`
|
|
Fingerprint string `json:"fingerprint,omitempty"`
|
|
// swagger:strfmt date-time
|
|
Created time.Time `json:"created_at"`
|
|
Owner *User `json:"user,omitempty"`
|
|
ReadOnly bool `json:"read_only,omitempty"`
|
|
KeyType string `json:"key_type,omitempty"`
|
|
}
|