feat: add per-year aggregator packages so main.go remains readable

This commit is contained in:
2025-12-02 09:51:21 +01:00
parent fe20a0b654
commit 8f265eae05
6 changed files with 49 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
package year2018
import (
_ "advent-of-code/internal/2018/DayOne"
_ "advent-of-code/internal/2018/DayThree"
_ "advent-of-code/internal/2018/DayTwo"
)