12 lines
295 B
Elixir
12 lines
295 B
Elixir
defmodule SlaxWeb.Presence do
|
|
@moduledoc """
|
|
Provides presence tracking to channels and processes.
|
|
|
|
See the [`Phoenix.Presence`](https://hexdocs.pm/phoenix/Phoenix.Presence.html)
|
|
docs for more details.
|
|
"""
|
|
use Phoenix.Presence,
|
|
otp_app: :slax,
|
|
pubsub_server: Slax.PubSub
|
|
end
|