48
49
50
51
52
53
|
# File 'lib/whiskey/server.rb', line 48
def initialize(host, port)
Whiskey.logger.info "Initializing a server at #{@@configuration}..."
@server = TCPServer.new(host, port)
Whiskey.logger.info "Successfully bound host and port!"
async.run
end
|