defmodule CA.EST.Put do import Plug.Conn def put(conn,_,type,id,spec) do # :io.format 'PUT/4:#{type}#{id}/#{spec}', [] send_resp(conn, 200, CA.EST.encode(%{"type" => type, "id" => id, "spec" => spec})) end end