mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2025-07-27 14:46:08 +02:00
.github
api
cmd
configs
init
internal
pkg
archive
testdata
archive.go
archive_test.go
clusterConfig.go
clusterConfig_test.go
fsBackend.go
fsBackend_test.go
json.go
nodelist.go
nodelist_test.go
s3Backend.go
log
lrucache
resampler
runtimeEnv
schema
tools
web
.gitignore
.goreleaser.yaml
LICENSE
Makefile
README.md
ReleaseNotes.md
go.mod
go.sum
gqlgen.yml
startDemo.sh
tools.go
14 lines
305 B
Go
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
|
|
}
|