17 lines
270 B
Elixir
17 lines
270 B
Elixir
defmodule Odinsea.World.Party do
|
|
@moduledoc """
|
|
Party management service.
|
|
"""
|
|
|
|
use GenServer
|
|
|
|
def start_link(_) do
|
|
GenServer.start_link(__MODULE__, [], name: __MODULE__)
|
|
end
|
|
|
|
@impl true
|
|
def init(_) do
|
|
{:ok, %{parties: %{}, next_id: 1}}
|
|
end
|
|
end
|