Skip to content

Commit b084ddc

Browse files
committed
[2024] Fix module name
1 parent d6992a9 commit b084ddc

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

2024/day01/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"os"
77
"strings"
88

9-
"github.com/kfarnung/advent-of-code/2020/lib"
9+
"github.com/kfarnung/advent-of-code/2024/lib"
1010
)
1111

1212
func part1(input string) int64 {

2024/day01/main_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"strings"
55
"testing"
66

7-
"github.com/kfarnung/advent-of-code/2020/lib"
7+
"github.com/kfarnung/advent-of-code/2024/lib"
88
"github.com/stretchr/testify/assert"
99
)
1010

2024/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
module github.com/kfarnung/advent-of-code/2020
1+
module github.com/kfarnung/advent-of-code/2024
22

3-
go 1.19
3+
go 1.23
44

55
require github.com/stretchr/testify v1.10.0
66

0 commit comments

Comments
 (0)