Session Transfer.
(cli *cli)
| 1150 | |
| 1151 | // Session Transfer. |
| 1152 | func appsSessionTransferCmd(cli *cli) *cobra.Command { |
| 1153 | cmd := &cobra.Command{ |
| 1154 | Use: "session-transfer", |
| 1155 | Short: "Manage session transfer settings for an application", |
| 1156 | } |
| 1157 | |
| 1158 | cmd.SetUsageTemplate(resourceUsageTemplate()) |
| 1159 | cmd.AddCommand(appsSessionTransferShowCmd(cli)) |
| 1160 | cmd.AddCommand(appsSessionTransferUpdateCmd(cli)) |
| 1161 | |
| 1162 | return cmd |
| 1163 | } |
| 1164 | |
| 1165 | func appsSessionTransferShowCmd(cli *cli) *cobra.Command { |
| 1166 | var inputs struct { |
no test coverage detected