slovocast/app/lib/app_web/controllers/hello_html.ex

11 lines
147 B
Elixir
Raw Normal View History

2024-04-23 02:30:14 +00:00
defmodule AppWeb.HelloHTML do
use AppWeb, :html
embed_templates "hello_html/*"
def index(assigns) do
~H"""
Hello!
"""
end
end