Initial Commit
This commit is contained in:
18
kv_umbrella/apps/kv_server/lib/kv_server.ex
Normal file
18
kv_umbrella/apps/kv_server/lib/kv_server.ex
Normal file
@@ -0,0 +1,18 @@
|
||||
defmodule KVServer do
|
||||
@moduledoc """
|
||||
Documentation for `KVServer`.
|
||||
"""
|
||||
|
||||
@doc """
|
||||
Hello world.
|
||||
|
||||
## Examples
|
||||
|
||||
iex> KVServer.hello()
|
||||
:world
|
||||
|
||||
"""
|
||||
def hello do
|
||||
:world
|
||||
end
|
||||
end
|
||||
20
kv_umbrella/apps/kv_server/lib/kv_server/application.ex
Normal file
20
kv_umbrella/apps/kv_server/lib/kv_server/application.ex
Normal file
@@ -0,0 +1,20 @@
|
||||
defmodule KVServer.Application do
|
||||
# See https://hexdocs.pm/elixir/Application.html
|
||||
# for more information on OTP Applications
|
||||
@moduledoc false
|
||||
|
||||
use Application
|
||||
|
||||
@impl true
|
||||
def start(_type, _args) do
|
||||
children = [
|
||||
# Starts a worker by calling: KVServer.Worker.start_link(arg)
|
||||
# {KVServer.Worker, arg}
|
||||
]
|
||||
|
||||
# See https://hexdocs.pm/elixir/Supervisor.html
|
||||
# for other strategies and supported options
|
||||
opts = [strategy: :one_for_one, name: KVServer.Supervisor]
|
||||
Supervisor.start_link(children, opts)
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user