Last active
February 9, 2016 09:20
-
-
Save willrax/78a21d7b0689234d6136 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defmodule Plugger.Mixfile do | |
use Mix.Project | |
# Project setup <snip> | |
def application do | |
[applications: [:logger, :cowboy, :plug], | |
mod: {Plugger, []}] | |
end | |
defp deps do | |
[ | |
{:cowboy, "~> 1.0"}, | |
{:plug, "~> 1.0"} | |
] | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment