| 15 | ) |
| 16 | |
| 17 | type storageSFTPFlags struct { |
| 18 | options sftp.Options |
| 19 | connectFlat bool |
| 20 | embedCredentials bool |
| 21 | } |
| 22 | |
| 23 | func (c *storageSFTPFlags) Setup(_ StorageProviderServices, cmd *kingpin.CmdClause) { |
| 24 | cmd.Flag("path", "Path to the repository in the SFTP/SSH server").Required().StringVar(&c.options.Path) |
nothing calls this directly
no outgoing calls
no test coverage detected