(deps commandDeps, workspaceRef *string)
| 978 | } |
| 979 | |
| 980 | func newNetworkSubscriptionsCommand(deps commandDeps, workspaceRef *string) *cobra.Command { |
| 981 | cmd := &cobra.Command{ |
| 982 | Use: "subscriptions", |
| 983 | Short: "Inspect network delivery preferences", |
| 984 | } |
| 985 | cmd.AddCommand(newNetworkSubscriptionsListCommand(deps, workspaceRef)) |
| 986 | return cmd |
| 987 | } |
| 988 | |
| 989 | func newNetworkSubscriptionsListCommand(deps commandDeps, workspaceRef *string) *cobra.Command { |
| 990 | var flags networkSubscriptionFlags |
no test coverage detected