Skip to content

Instantly share code, notes, and snippets.

@damonvjanis
Created August 22, 2020 17:34
Show Gist options
  • Save damonvjanis/7962dc836c17349447db804ac25900d6 to your computer and use it in GitHub Desktop.
Save damonvjanis/7962dc836c17349447db804ac25900d6 to your computer and use it in GitHub Desktop.
inbound_controller.ex
defmodule MyAppWeb.InboundController do
use MyAppWeb, :controller
def create(conn, params) do
# POST the message to Kafka
text(conn, "")
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment