Packages

Crawl and subscribe to Bitcoin transaction events using Bitbus, Bitsocket and BitFS.

Current section

Files

Jump to
terminus lib terminus http sse_message.ex
Raw

lib/terminus/http/sse_message.ex

defmodule Terminus.HTTP.SSEMessage do
@moduledoc false
defstruct id: nil, event: "message", data: ""
@type t :: %__MODULE__{
id: String.t,
event: String.t,
data: binary
}
end