Sha256: b02c5280207271637472bcd1ab207f8d9e4050717decdc362342ed195fa1c937

Contents?: true

Size: 468 Bytes

Versions: 3

Compression:

Stored size: 468 Bytes

Contents

module Hyperloop
  module Console
    class Evaluate < Hyperloop::ServerOp
      param acting_user: nil, nils: true
      param :target_id
      param :sender_id
      param :context
      param string: nil
      dispatch_to { Hyperloop::Application }
    end

    class Response < Hyperloop::ServerOp
      param acting_user: nil, nils: true
      param :target_id
      param :kind
      param :message
      dispatch_to { Hyperloop::Application }
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
hyper-console-0.1.4 lib/hyperloop/console/evaluate.rb
hyper-console-0.1.3 lib/hyperloop/console/evaluate.rb
hyper-console-0.1.2 lib/hyperloop/console/evaluate.rb