midway through making ssh workers
This commit is contained in:
parent
727bdcf1b7
commit
35cf4cc8e5
|
@ -0,0 +1,14 @@
|
|||
require 'hydra/messaging_io'
|
||||
module Hydra #:nodoc:
|
||||
# Read and write via stdout and stdin.
|
||||
class Stdio
|
||||
include Hydra::MessagingIO
|
||||
|
||||
# Initialize new Stdio
|
||||
def initialize()
|
||||
@reader = $stdin
|
||||
@writer = $stdout
|
||||
end
|
||||
end
|
||||
end
|
||||
|
Loading…
Reference in New Issue