Initial Commit

This commit is contained in:
2024-12-24 17:45:52 +01:00
commit c30845575a
42 changed files with 870 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
defmodule KV do
use Application
@impl true
def start(_type, _args) do
# Anche se non usiamo KV.Supervisor name direttamente,
# e' comodo per debug
KV.Supervisor.start_link(name: KV.Supervisor)
end
end