code-mancers/invoker

View on GitHub
lib/invoker/ipc/ping_command.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Invoker
  module IPC
    class PingCommand < BaseCommand
      def run_command(message_object)
        pong = Invoker::IPC::Message::Pong.new(status: 'pong')
        send_data(pong)
      end
    end
  end
end