Current section
Files
Jump to
Current section
Files
examples/SimpleChat/mix.exs
defmodule Simplechat.Mixfile do
use Mix.Project
def project do
[
app: :SimpleChat,
version: "0.0.5",
deps: deps
]
end
def application do
[
applications: [],
mod: {Simplechat, []}
]
end
defp deps do
[
{ :weber, github: "0xAX/weber" }
]
end
end