8 lines
196 B
Elixir
8 lines
196 B
Elixir
defmodule BeetRoundServerWeb.DefaultApiController do
|
|
use BeetRoundServerWeb, :controller
|
|
|
|
def index(conn, _params) do
|
|
text(conn, "The Beet Round API (#{Mix.env()}) is running.")
|
|
end
|
|
end
|