Skip to content

Instantly share code, notes, and snippets.

@nsomar
Created May 17, 2017 13:27
Show Gist options
  • Save nsomar/8030e3189a21699003cce7b99e610727 to your computer and use it in GitHub Desktop.
Save nsomar/8030e3189a21699003cce7b99e610727 to your computer and use it in GitHub Desktop.
defmodule Website do
def cool_api_endpoint(conn, content) do
# some calculations
# Using task
task = Task.async(fn -> Utilities.write(content, "/etc/some/secret/location") 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