This commit is contained in:
15
data/Y22/y22.go
Normal file
15
data/Y22/y22.go
Normal file
@ -0,0 +1,15 @@
|
||||
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()
|
||||
}
|
Reference in New Issue
Block a user