-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
49 lines (41 loc) · 963 Bytes
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package main
import (
"fmt"
"github.com/m7kvqbe1/advent-of-code-2023/pkg/day01"
"github.com/m7kvqbe1/advent-of-code-2023/pkg/day02"
"github.com/spf13/cobra"
)
func main() {
rootCmd := &cobra.Command{Use: "advent-of-code-2023"}
rootCmd.AddCommand(&cobra.Command{
Use: "day01part1",
Short: "Run Day 01 Part 1",
Run: func(cmd *cobra.Command, args []string) {
day01.Part1()
},
})
rootCmd.AddCommand(&cobra.Command{
Use: "day01part2",
Short: "Run Day 01 Part 2",
Run: func(cmd *cobra.Command, args []string) {
day01.Part2()
},
})
rootCmd.AddCommand(&cobra.Command{
Use: "day02part1",
Short: "Run Day 02 Part 1",
Run: func(cmd *cobra.Command, args []string) {
day02.Part1()
},
})
rootCmd.AddCommand(&cobra.Command{
Use: "day02part2",
Short: "Run Day 02 Part 2",
Run: func(cmd *cobra.Command, args []string) {
day02.Part2()
},
})
if err := rootCmd.Execute(); err != nil {
fmt.Println(err)
}
}