mirror of
https://github.com/kopia/kopia.git
synced 2026-03-15 21:01:37 -04:00
dead code
This commit is contained in:
@@ -1,32 +0,0 @@
|
||||
package content
|
||||
|
||||
import "time"
|
||||
|
||||
// BackupMetadata contains metadata information about a backup.
|
||||
type BackupMetadata struct {
|
||||
// HostName is the name of the host where the backup was taken.
|
||||
HostName string `json:"hostname"`
|
||||
|
||||
// Description is an optional user-provided description of the backup.
|
||||
Description string `json:"description"`
|
||||
|
||||
// Directory is the directory path.
|
||||
Directory string `json:"directory"`
|
||||
|
||||
// User is the name of the user who started the backup.
|
||||
User string `json:"user"`
|
||||
}
|
||||
|
||||
// BackupManifest contains backup manifest.
|
||||
type BackupManifest struct {
|
||||
BackupMetadata
|
||||
|
||||
// StartTime is the time when the backup was started.
|
||||
StartTime time.Time `json:"startTime"`
|
||||
|
||||
// EndTime is the time when the backup has finished.
|
||||
EndTime time.Time `json:"endTime"`
|
||||
|
||||
// RootObjectID is the ObjectID of the root directory.
|
||||
RootObjectID string `json:"rootObject"`
|
||||
}
|
||||
@@ -1,4 +0,0 @@
|
||||
/*
|
||||
Package content describes contents of backups.
|
||||
*/
|
||||
package content
|
||||
Reference in New Issue
Block a user