Adam Millerchip
7915b6d4ed
I originally developed this as an employee under the assumption that this would be released as an official SDK maintained by the company. But this is not the case, so I'm resetting the history to develop this in a personal capacity. This commit represents the progress until now.
29 lines
554 B
Elixir
29 lines
554 B
Elixir
defmodule LineBotSample.MixProject do
|
|
use Mix.Project
|
|
|
|
def project do
|
|
[
|
|
app: :line_bot_sample,
|
|
version: "0.1.0",
|
|
elixir: "~> 1.9",
|
|
start_permanent: Mix.env() == :prod,
|
|
deps: deps()
|
|
]
|
|
end
|
|
|
|
# Run "mix help compile.app" to learn about applications.
|
|
def application do
|
|
[
|
|
mod: {LineBotSample.Application, []}
|
|
]
|
|
end
|
|
|
|
# Run "mix help deps" to learn about dependencies.
|
|
defp deps do
|
|
[
|
|
{:plug_cowboy, "~> 2.0"},
|
|
{:jason, "~> 1.1"},
|
|
{:line_bot, path: "../"}
|
|
]
|
|
end
|
|
end
|