example: Add example for NXAST_LEARN
This commit is contained in:
parent
04fb4ffa52
commit
270d01b626
9 changed files with 180 additions and 0 deletions
27
examples/nx_learning_switch/mix.exs
Normal file
27
examples/nx_learning_switch/mix.exs
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue