(deps commandDeps)
| 688 | } |
| 689 | |
| 690 | func newSessionSoulCommand(deps commandDeps) *cobra.Command { |
| 691 | cmd := &cobra.Command{ |
| 692 | Use: authoredContextSoulKey, |
| 693 | Short: "Manage session Soul snapshots", |
| 694 | } |
| 695 | cmd.AddCommand(newSessionSoulRefreshCommand(deps)) |
| 696 | return cmd |
| 697 | } |
| 698 | |
| 699 | func newSessionSoulRefreshCommand(deps commandDeps) *cobra.Command { |
| 700 | var ( |
no test coverage detected