seafile_recovery/config.go

13 lines
294 B
Go
Raw Normal View History

2021-04-21 12:44:49 +00:00
package main
type configCollect struct {
2021-04-22 09:29:04 +00:00
Head bool `docopt:"head"`
2021-04-22 10:38:52 +00:00
Ls bool `docopt:"ls"`
Dump bool `docopt:"dump"`
S3 bool `docopt:"s3"`
2021-04-21 12:44:49 +00:00
Storage string `docopt:"--storage"`
RepoId string `docopt:"<repoid>"`
2021-04-22 10:38:52 +00:00
PathId string `docopt:"<pathid>"`
Bucket string `docopt:"<bucket>"`
2021-04-21 12:44:49 +00:00
}