forresty/rdkit

View on GitHub
example/blocking/server.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Blocking
  class Server < RDKit::Server
    def initialize
      super('0.0.0.0', 3721)

      @core = Core.new
      @runner = CommandRunner.new(core)
    end
  end
end