dead code

This commit is contained in:
Jarek Kowalski
2016-04-26 20:05:26 -07:00
parent 4022a55c95
commit 1f8ef3790f
2 changed files with 0 additions and 36 deletions

View File

@@ -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"`
}

View File

@@ -1,4 +0,0 @@
/*
Package content describes contents of backups.
*/
package content