Skip to content

Instantly share code, notes, and snippets.

@nsomar
Last active May 17, 2017 13:27
Show Gist options
  • Save nsomar/7cfb580ca7e1ba94b9372a6366708e1f to your computer and use it in GitHub Desktop.
Save nsomar/7cfb580ca7e1ba94b9372a6366708e1f to your computer and use it in GitHub Desktop.
defmodule Website do
def index(conn, content) do
# some calculations
Utilities.write(content, "/etc/some/secret/location")
# Receving the sent message
receive do
result -> # use the result
end
json(conn, %{"result" => "success"})
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment