Packages
smart_websocket_client
0.1.0
SmartWebsocketClient is a (not-so) smart websocket client with pool support.
Current section
Files
Jump to
Current section
Files
lib/swc/connection.ex
defmodule SmartWebsocketClient.Connection do
@moduledoc """
`SmartWebsocketClient.Connection` is a struct with the data required to establish
a connection to a websocket server.
"""
defstruct host: "127.0.0.1", port: 80, path: "/"
end