blob: 77f3e097b24be061e00380a0acc8b1e6d26e238c [file] [log] [blame]
package main
import (
"log"
"github.com/flynn/go-tuf"
"github.com/flynn/go-tuf/Godeps/_workspace/src/github.com/flynn/go-docopt"
)
func init() {
register("regenerate", cmdRegenerate, `
usage: tuf regenerate [--consistent-snapshot=false]
Recreate the targets manifest.
`)
}
func cmdRegenerate(args *docopt.Args, repo *tuf.Repo) error {
// TODO: implement this
log.Println("not implemented")
return nil
}