This commit is contained in:
Pim Kunis 2019-07-13 20:16:46 +02:00
commit 08c904ba12
57 changed files with 12621 additions and 0 deletions

View file

@ -0,0 +1,7 @@
defmodule UiWeb.PageController do
use UiWeb, :controller
def index(conn, _params) do
render(conn, "index.html")
end
end