bump_server/lib/bump_web/controllers/page_controller.ex
raphael 4e607a7e45 adds phoenix boilerplate and database api
- message communication added
- database migration added
- initial commit
2021-12-05 00:36:13 +01:00

8 lines
135 B
Elixir

defmodule BumpWeb.PageController do
use BumpWeb, :controller
def index(conn, _params) do
render(conn, "index.html")
end
end