mirror of
https://github.com/kopia/kopia.git
synced 2026-03-20 07:06:42 -04:00
14 lines
352 B
Go
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"`
|
|
}
|