# File lib/ftw/webserver.rb, line 12
  def initialize(host, port, &block)
    @host = host
    @port = port
    @handler = block

    @logger = Cabin::Channel.get
    @threads = []
  end