14 lines
277 B
Go
14 lines
277 B
Go
|
// Copyright 2023 Michael Amann and contributors
|
||
|
// SPDX-License-Identifier: AGPL-3.0-only
|
||
|
|
||
|
package shared
|
||
|
|
||
|
type PackageMetadataInput struct {
|
||
|
IsTag string
|
||
|
Branch string
|
||
|
DefaultBranch string
|
||
|
Version string
|
||
|
CommitSha string
|
||
|
CommitTime string
|
||
|
}
|