example: Add example for NXAST_LEARN

This commit is contained in:
Eishun Kondoh 2019-06-05 01:18:25 +09:00
parent 04fb4ffa52
commit 270d01b626
9 changed files with 180 additions and 0 deletions

View file

@ -0,0 +1,27 @@
defmodule NxLearningSwitch.MixProject do
use Mix.Project
def project do
[
app: :nx_learning_switch,
version: "0.1.0",
elixir: "~> 1.8",
start_permanent: Mix.env() == :prod,
deps: deps()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:tres, path: "../../../tres"}
]
end
end