SquidWeb.Endpoint (squid v0.1.4)
Endpoint helper to import everthing needs as Phoenix.Endpoint
does.
Before using this module, you should add the following configuration:
config :your_tentacle, :squid,
pubsub_server: YourPubSub,
endpoint: ShellWeb.Endpoint
The specified app should be the one that defined generic phoenix things
such as the PubSub
server.
examples
Examples
defmodule TentacleWeb.Endpoint do
use SquidWeb.Endpoint, otp_app: :your_tentacle
end