defmodule Novus.Counter do use GenServer def start_link(_), do: GenServer.start_link(__MODULE__, 0, name: __MODULE__) def init(n), do: {:ok, n} end