mirror of
https://github.com/KDE/kde-linux.git
synced 2026-08-04 11:12:32 -04:00
cleans up the s3 and prepares for the repo v3 (which accounts for editions in the repo path) Closes #590
12 lines
326 B
Go
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
|
|
}
|