()
| 251 | } |
| 252 | |
| 253 | func init() { |
| 254 | RootCmd.AddCommand(rmCmd) |
| 255 | enableStructuredOutput(rmCmd) |
| 256 | setCommandDestructiveLevel(rmCmd, destructiveLevelDelete) |
| 257 | rmCmd.Flags().BoolP("force", "f", false, "Allow removing non-empty folders; same as --recursive") |
| 258 | rmCmd.Flags().BoolP("recursive", "r", false, "Recursively remove folders") |
| 259 | rmCmd.Flags().Bool("permanent", false, "Permanently delete instead of moving to Dropbox trash") |
| 260 | } |
nothing calls this directly
no test coverage detected