mirror of
https://github.com/gabrie30/ghorg.git
synced 2025-08-07 06:47:14 +02:00
Bumps code.gitea.io/sdk/gitea from 0.18.0 to 0.19.0. --- updated-dependencies: - dependency-name: code.gitea.io/sdk/gitea dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
17 lines
390 B
Go
17 lines
390 B
Go
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package gitea
|
|
|
|
import "time"
|
|
|
|
type Secret struct {
|
|
// the secret's name
|
|
Name string `json:"name"`
|
|
// the secret's data
|
|
Data string `json:"data"`
|
|
// Date and Time of secret creation
|
|
Created time.Time `json:"created_at"`
|
|
}
|