1
0
mirror of https://github.com/restic/restic.git synced 2024-06-30 08:20:55 +02:00
restic/cmd/khepri/cmd_list.go
2014-10-03 21:44:55 +02:00

22 lines
360 B
Go

package main
import (
"github.com/fd0/khepri"
"github.com/fd0/khepri/backend"
)
func commandList(be backend.Server, key *khepri.Key, args []string) error {
// ids, err := be.ListRefs()
// if err != nil {
// fmt.Fprintf(os.Stderr, "error: %v\n", err)
// return nil
// }
// for _, id := range ids {
// fmt.Printf("%v\n", id)
// }
return nil
}