move storage and api to apps, create base analyzer

This commit is contained in:
2024-05-10 06:08:25 +02:00
parent 987339f517
commit 2e56c7105b
42 changed files with 403 additions and 48 deletions
+8
View File
@@ -0,0 +1,8 @@
defmodule StorageTest do
use ExUnit.Case
doctest Storage
test "greets the world" do
assert Storage.hello() == :world
end
end
+1
View File
@@ -0,0 +1 @@
ExUnit.start()