Fix folder name

This commit is contained in:
Ryan Pandya
2022-08-29 23:19:43 -07:00
parent 523e8e98c7
commit cfd1738ef3
8 changed files with 0 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
defmodule Logsrv do
@moduledoc """
Documentation for `Logsrv`.
"""
@doc """
Hello world.
## Examples
iex> Logsrv.hello()
:world
"""
def hello do
:world
end
end
+20
View File
@@ -0,0 +1,20 @@
defmodule Logsrv.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: Logsrv.Worker.start_link(arg)
# {Logsrv.Worker, arg}
]
# See https://hexdocs.pm/elixir/Supervisor.html
# for other strategies and supported options
opts = [strategy: :one_for_one, name: Logsrv.Supervisor]
Supervisor.start_link(children, opts)
end
end