#ruby can change this
```ruby
def response
command = @client.gets&.strip
case command
when "pause" then @countdown.pause
when "resume" then @countdown.resume
when "stop" then @countdown.stop
when "status" then @countdown.status
else raise ArgumentError "ERR: unknown command"
end
end
```
by this
```ruby
def response
command = @client.gets&.strip
@countdown.send command
end
```
and this is awesome