mirror of
https://github.com/benbusby/farside.git
synced 2025-03-26 16:48:10 -04:00

Rather than use a full blown framework*, adding basic routing with Plug.Router seems to make more sense, since I'm not planning on hosting any content through this app. The app itself will just be endpoints for all available services that redirect the user to an available instance for the requested service. Note that I might change my mind about this, but that's unlikely. At most there would just be a home page with info about available instances, but even then that seems kinda pointless. Trying to keep this as absolutely simple as possible. *like Phoenix
19 lines
225 B
Elixir
19 lines
225 B
Elixir
defmodule PrivacyRevolver do
|
|
@moduledoc """
|
|
Documentation for `PrivacyRevolver`.
|
|
"""
|
|
|
|
@doc """
|
|
Hello world.
|
|
|
|
## Examples
|
|
|
|
iex> PrivacyRevolver.hello()
|
|
:world
|
|
|
|
"""
|
|
def hello do
|
|
:world
|
|
end
|
|
end
|