phoenix_microsoftbot v0.1.0 MicrosoftBot.Phoenix.Controller

This module defines the basic methods required to use the Microsoft bot service ## Examples

Defining the controller

defmodule MessageController do
  use MicrosoftBot.Phoenix.Controller

  def message_received(%MicrosoftBot.Models.Message{} = message) do
  # ...
  # send message back or resp(conn, 200, "")
  end
end