This commit is contained in:
bluepython508
2023-12-06 08:21:43 +00:00
parent 683522ddc0
commit abbd8a263a
4 changed files with 42 additions and 1 deletions

View File

@@ -7,6 +7,7 @@ defmodule Mix.Tasks.Aoc do
defp module(3), do: Aoc2023.Day3
defp module(4), do: Aoc2023.Day4
defp module(5), do: Aoc2023.Day5
defp module(6), do: Aoc2023.Day6
# [MODULE INSERTION POINT]
defp base_dir(), do: System.get_env("AOC_BASE")
@@ -201,4 +202,4 @@ defmodule Mix.Tasks.Aoc do
{:noreply, state}
end
end
end
end