Start repo, claude & kimi still vibing tho
This commit is contained in:
16
lib/odinsea/world/family.ex
Normal file
16
lib/odinsea/world/family.ex
Normal file
@@ -0,0 +1,16 @@
|
||||
defmodule Odinsea.World.Family do
|
||||
@moduledoc """
|
||||
Family management service.
|
||||
"""
|
||||
|
||||
use GenServer
|
||||
|
||||
def start_link(_) do
|
||||
GenServer.start_link(__MODULE__, [], name: __MODULE__)
|
||||
end
|
||||
|
||||
@impl true
|
||||
def init(_) do
|
||||
{:ok, %{families: %{}}}
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user