(ctx context.Context, args ...interface{})
| 1816 | var _ Cmder = (*StringSliceCmd)(nil) |
| 1817 | |
| 1818 | func NewStringSliceCmd(ctx context.Context, args ...interface{}) *StringSliceCmd { |
| 1819 | return &StringSliceCmd{ |
| 1820 | baseCmd: baseCmd{ |
| 1821 | ctx: ctx, |
| 1822 | args: args, |
| 1823 | cmdType: CmdTypeStringSlice, |
| 1824 | }, |
| 1825 | } |
| 1826 | } |
| 1827 | |
| 1828 | func (cmd *StringSliceCmd) SetVal(val []string) { |
| 1829 | cmd.val = val |
no outgoing calls
no test coverage detected