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,6 @@
package year2022
import (
_ "advent-of-code/internal/2022/DayOne"
_ "advent-of-code/internal/2022/DayTwo"
)