# TODO: ask eric about naming defmodule PlugParadoxAuth.GoogleAuthPlug do import Plug.Conn def init(options) do # initialize options options end def call(conn, _opts) do IO.inspect "request test" IO.inspect conn conn |> put_resp_content_type("text/plain") |> send_resp(200, "Hello world") end end