Fresh repository history for elektrine/tarakan hosted at https://git.elektrine.com/elektrine/tarakan.
9 lines
200 B
Elixir
9 lines
200 B
Elixir
defmodule TarakanWeb.Presence do
|
|
@moduledoc """
|
|
Tracks live observers connected to the public registry.
|
|
"""
|
|
|
|
use Phoenix.Presence,
|
|
otp_app: :tarakan,
|
|
pubsub_server: Tarakan.PubSub
|
|
end
|