Packages
This library allows for easy creation of the web API that the Microsoft bot framework can connect to.
Current section
Files
Jump to
Current section
Files
lib/microsoftbot_callback.ex
defmodule MicrosoftBot.Callback do
@moduledoc """
The module defines the callback required to handle the activity receieved
"""
@doc """
Callback to handle the activity received
"""
@callback message_received(Plug.Conn.t, ExMicrosoftBot.Models.Activity.t) :: Plug.Conn.t
end