forked from AkkomaGang/akkoma
filename and test fixes
This commit is contained in:
parent
93b9f226e0
commit
33bd8fbffe
3 changed files with 5 additions and 2 deletions
21
restarter/mix.exs
Normal file
21
restarter/mix.exs
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue