package main import ( "adventofcode/pkg/one" "adventofcode/pkg/three" "adventofcode/pkg/two" "fmt" ) func main() { fmt.Println("🎄 MERRY CHRISTMAS 🎄") fmt.Println("Day 1️⃣") one.Run() fmt.Println("Day 2️⃣") two.Run() fmt.Println("Day 3️⃣") three.Run() }