example: Add example of user authencate l2 switch like an AP on cafe

This commit is contained in:
Eishun Kondoh 2019-04-22 20:56:57 +09:00
parent 0b92a325d5
commit 4949376e3a
5 changed files with 70 additions and 0 deletions

20
examples/cafe/mix.exs Normal file
View 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