1
0
Fork 0
mirror of https://github.com/restic/restic.git synced 2025-03-16 00:00:05 +01:00

Change function names

This commit is contained in:
ibib 2017-01-29 12:38:56 +01:00
parent f83fa24467
commit a5ea82e5a5

View file

@ -86,19 +86,19 @@ func runSnapshots(opts SnapshotOptions, gopts GlobalOptions, args []string) erro
}
if gopts.JSON {
err := jsonoutput(list)
err := printSnapshotsJSON(list)
if err != nil {
fmt.Fprintf(os.Stderr, "error printing snapshot: %v\n", err)
}
return nil
}
naturaloutput(list)
printSnapshotsReadable(list)
return nil
}
//naturaloutput provides human redability
func naturaloutput(list []*restic.Snapshot) {
//printSnapshotsReadable provides human redability
func printSnapshotsReadable(list []*restic.Snapshot) {
tab := NewTable()
tab.Header = fmt.Sprintf("%-8s %-19s %-10s %-10s %s", "ID", "Date", "Host", "Tags", "Directory")
@ -150,8 +150,8 @@ type Snapshot struct {
Directory []string `json:"directory"`
}
//jsonoutput provides machine redability
func jsonoutput(list []*restic.Snapshot) error {
//printSnapshotsJSON provides machine redability
func printSnapshotsJSON(list []*restic.Snapshot) error {
var response []Snapshot
for _, sn := range list {