mirror of
https://github.com/zoldar/jenot.git
synced 2026-01-03 06:22:55 +00:00
9 lines
146 B
Elixir
9 lines
146 B
Elixir
defmodule Jenot do
|
|
@moduledoc """
|
|
Note taking app. Spelled ye-not.
|
|
"""
|
|
|
|
def host() do
|
|
Application.fetch_env!(:jenot, :host)
|
|
end
|
|
end
|