1
0
mirror of https://github.com/ClusterCockpit/cc-backend synced 2025-03-15 18:35:56 +01:00

14 lines
305 B
Go

// Copyright (C) NHR@FAU, University Erlangen-Nuremberg.
// All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package archive
type S3ArchiveConfig struct {
Path string `json:"filePath"`
}
type S3Archive struct {
path string
}