Tristan f228b7b494
All checks were successful
continuous-integration/drone/push Build is passing
Add Go
2023-12-03 21:50:29 +01:00

16 lines
241 B
Go

package Y22
import (
Y22D1 "adventofcode/data/Y22/day1"
Y22D2 "adventofcode/data/Y22/day2"
"adventofcode/src-go/helpers"
)
func Day1() helpers.DayResults {
return Y22D1.Day1()
}
func Day2() helpers.DayResults {
return Y22D2.Day2()
}