mirror of
https://github.com/Threnklyn/advent-of-code-go.git
synced 2026-05-20 11:53:27 +02:00
9 lines
164 B
Go
9 lines
164 B
Go
package main
|
|
|
|
import "github.com/alexchao26/advent-of-code-go/scripts/aoc"
|
|
|
|
func main() {
|
|
day, year, cookie := aoc.ParseFlags()
|
|
aoc.GetInput(day, year, cookie)
|
|
}
|