aboutsummaryrefslogtreecommitdiff
path: root/shardweb/lib/shard_web/controllers/page_controller.ex
blob: a590630411c208c9b2bd9cb0b7bd14749cc6287f (plain) (blame)
1
2
3
4
5
6
7
defmodule ShardWeb.PageController do
  use ShardWeb, :controller

  def index(conn, _params) do
    render conn, "index.html"
  end
end