| 19 | ) |
| 20 | |
| 21 | type storageFilesystemFlags struct { |
| 22 | options filesystem.Options |
| 23 | |
| 24 | connectOwnerUID string |
| 25 | connectOwnerGID string |
| 26 | connectFileMode string |
| 27 | connectDirMode string |
| 28 | connectFlat bool |
| 29 | } |
| 30 | |
| 31 | func (c *storageFilesystemFlags) Setup(_ StorageProviderServices, cmd *kingpin.CmdClause) { |
| 32 | cmd.Flag("path", "Path to the repository").Required().StringVar(&c.options.Path) |
nothing calls this directly
no outgoing calls
no test coverage detected