Created
April 14, 2016 05:13
-
-
Save kristianfreeman/491ad60a16667340c42dbe20b5a152d2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defmodule SampleApp.WebhookController do | |
use SampleApp.Web, :controller | |
def index(conn, _params) do | |
json conn, %{status: “ok”} | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment