Current section

Files

Jump to
pixie lib bayeux.ex
Raw

lib/bayeux.ex

defmodule Pixie.Bayeux do
@version "1.0"
# @transports Enum.into(~w| long-polling cross-origin-long-polling callback-polling websocket eventsource |, HashSet.new)
@transports Enum.into(~w| long-polling |, HashSet.new)
def version(), do: @version
def transports(), do: @transports
end