Current section

Files

Jump to
infuse lib web.ex
Raw

lib/web.ex

defmodule Infuse.Web do
import Plug.Conn
def init(options) do
options
end
def call(conn, _opts) do
conn
|> put_resp_content_type("text/plain")
|> send_resp(200, "Hello world")
end
end