Remove unused test files

This commit is contained in:
Jonatan Kłosko 2024-02-01 15:56:04 +08:00
parent 1f97f42f07
commit 18718f13be
3 changed files with 0 additions and 23 deletions

View file

@ -1 +0,0 @@
/_build/

View file

@ -1,3 +0,0 @@
defmodule Project do
def hello, do: "hello"
end

View file

@ -1,19 +0,0 @@
defmodule Project.MixProject do
use Mix.Project
def project do
[
app: :project,
version: "0.1.0",
elixir: "~> 1.11",
start_permanent: Mix.env() == :prod,
deps: []
]
end
def application do
[
extra_applications: [:logger]
]
end
end