Skip to content

Instantly share code, notes, and snippets.

@amalbuquerque
Last active October 9, 2018 09:49
Show Gist options
  • Save amalbuquerque/52f9cddddf97a784966c20f0ec71d477 to your computer and use it in GitHub Desktop.
Save amalbuquerque/52f9cddddf97a784966c20f0ec71d477 to your computer and use it in GitHub Desktop.
defmodule Motus.Web.FacialCheckController do
alias Motus.Verifications
use Motus.Web, :controller
use ExStatsD.Decorator
@use_histogram true
# [...]
@metric "facial_check_controller.show"
deftimed show(conn, params) do
facial_check = Verifications.get_facial_check!(params)
render(conn, "show.json", facial_check: facial_check)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment