filename and test fixes

This commit is contained in:
Alexander Strizhakov 2020-01-28 18:02:11 +03:00
commit 33bd8fbffe
No known key found for this signature in database
GPG key ID: 022896A53AEF1381
3 changed files with 5 additions and 2 deletions

21
restarter/mix.exs Normal file
View file

@ -0,0 +1,21 @@
defmodule Restarter.MixProject do
use Mix.Project
def project do
[
app: :restarter,
version: "0.1.0",
elixir: "~> 1.8",
start_permanent: Mix.env() == :prod,
deps: deps()
]
end
def application do
[
mod: {Restarter, []}
]
end
defp deps, do: []
end