example: Add example of user authencate l2 switch like an AP on cafe
This commit is contained in:
parent
0b92a325d5
commit
4949376e3a
5 changed files with 70 additions and 0 deletions
20
examples/cafe/mix.exs
Normal file
20
examples/cafe/mix.exs
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
defmodule Cafe.MixProject do
|
||||
use Mix.Project
|
||||
|
||||
def project do
|
||||
[
|
||||
apps_path: "apps",
|
||||
start_permanent: Mix.env() == :prod,
|
||||
deps: deps()
|
||||
]
|
||||
end
|
||||
|
||||
# Dependencies listed here are available only for this
|
||||
# project and cannot be accessed from applications inside
|
||||
# the apps folder.
|
||||
#
|
||||
# Run "mix help deps" for examples and options.
|
||||
defp deps do
|
||||
[]
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue