Files
kopia/internal/config/metadata_format.go
2017-08-01 17:47:28 +02:00

14 lines
352 B
Go

package config
import (
"github.com/kopia/kopia/auth"
)
// MetadataFormat describes the format of metadata items in repository.
// Contents of this structure are serialized in plain text in the storage.
type MetadataFormat struct {
auth.SecurityOptions
Version string `json:"version"`
EncryptionAlgorithm string `json:"encryption"`
}