mirror of
https://github.com/rjNemo/phoenix_chat
synced 2026-06-06 02:16:42 +00:00
11 lines
294 B
Elixir
11 lines
294 B
Elixir
defmodule ChatWeb.Presence do
|
|
@moduledoc """
|
|
Provides presence tracking to channels and processes.
|
|
|
|
See the [`Phoenix.Presence`](http://hexdocs.pm/phoenix/Phoenix.Presence.html)
|
|
docs for more details.
|
|
"""
|
|
use Phoenix.Presence,
|
|
otp_app: :chat,
|
|
pubsub_server: Chat.PubSub
|
|
end
|