12 lines
		
	
	
		
			326 B
		
	
	
	
		
			Elixir
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			326 B
		
	
	
	
		
			Elixir
		
	
	
	
	
	
defmodule <%= module %> 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: <%= inspect otp_app %>,
 | 
						|
    pubsub_server: <%= inspect pubsub_server %>
 | 
						|
end
 |