require 'flydata/command/base' require 'flydata/command/sender' module Flydata module Command class Status < Base def run show_purpose_name sender = Flydata::Command::Sender.new sender.status end end end end