(ctx context.Context, args ...interface{})
| 1071 | var _ Cmder = (*StatusCmd)(nil) |
| 1072 | |
| 1073 | func NewStatusCmd(ctx context.Context, args ...interface{}) *StatusCmd { |
| 1074 | return &StatusCmd{ |
| 1075 | baseCmd: baseCmd{ |
| 1076 | ctx: ctx, |
| 1077 | args: args, |
| 1078 | cmdType: CmdTypeStatus, |
| 1079 | }, |
| 1080 | } |
| 1081 | } |
| 1082 | |
| 1083 | func (cmd *StatusCmd) SetVal(val string) { |
| 1084 | cmd.val = val |
no outgoing calls
no test coverage detected