Files
kde-linux/upload-vacuum-v3/artifact.go
Harald Sitter ef363735c4 add upload-vacuum-v3
cleans up the s3 and prepares for the repo v3 (which accounts for
editions in the repo path)

Closes #590
2026-04-15 14:04:27 +02:00

12 lines
326 B
Go

// SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
// SPDX-FileCopyrightText: 2024 Harald Sitter <sitter@kde.org>
package main
type Artifact interface {
Path() string
// A SHA256 string with filename. Separated by two spaces. Never includes dirname!
SHA256() string
Delete() error
}