This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defmodule Server do | |
@moduledoc """ | |
A GenServer template for a "singleton" process. | |
""" | |
use GenServer | |
require Logger | |
def start_link(opts \\ []) do | |
Logger.debug "Started with opts: #{inspect opts}" | |
GenServer.start_link(__MODULE__, opts, [name: __MODULE__]) |