Files
firezone/mix.exs
Jamil Bou Kheir d049b006f6 Initial commit
2020-04-21 20:49:55 -07:00

22 lines
432 B
Elixir

defmodule CloudfireUmbrella.MixProject do
use Mix.Project
def project do
[
apps_path: "apps",
version: "0.1.0",
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