hybridgroup/artoo

View on GitHub
lib/artoo/interfaces/ping.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'artoo/interfaces/interface'

module Artoo
  module Interfaces
    # The Ping interface.
    class Ping < Interface
      def interface_type
        :ping
      end

      COMMANDS = [:ping]

      def ping
      end
    end
  end
end