Skip to content

Commit e82ee9d

Browse files
Fix Go module in 2019
1 parent 18aedc0 commit e82ee9d

File tree

18 files changed

+18
-18
lines changed

18 files changed

+18
-18
lines changed

2019/go/01/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"log"
55
"strconv"
66

7-
"github.com/sanderploegsma/advent-of-code/2019/utils"
7+
"github.com/sanderploegsma/advent-of-code/2019/go/utils"
88
)
99

1010
func main() {

2019/go/02/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package main
22

33
import (
4-
"github.com/sanderploegsma/advent-of-code/2019/utils"
4+
"github.com/sanderploegsma/advent-of-code/2019/go/utils"
55

66
"log"
77
"strconv"

2019/go/03/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"strings"
88
"time"
99

10-
"github.com/sanderploegsma/advent-of-code/2019/utils"
10+
"github.com/sanderploegsma/advent-of-code/2019/go/utils"
1111
)
1212

1313
func main() {

2019/go/05/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"os"
66
"time"
77

8-
"github.com/sanderploegsma/advent-of-code/2019/utils"
8+
"github.com/sanderploegsma/advent-of-code/2019/go/utils"
99
)
1010

1111
func main() {

2019/go/06/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"strings"
66
"time"
77

8-
"github.com/sanderploegsma/advent-of-code/2019/utils"
8+
"github.com/sanderploegsma/advent-of-code/2019/go/utils"
99
)
1010

1111
func main() {

2019/go/07/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"sync"
77
"time"
88

9-
"github.com/sanderploegsma/advent-of-code/2019/utils"
9+
"github.com/sanderploegsma/advent-of-code/2019/go/utils"
1010
)
1111

1212
func main() {

2019/go/08/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"math"
66
"strconv"
77

8-
"github.com/sanderploegsma/advent-of-code/2019/utils"
8+
"github.com/sanderploegsma/advent-of-code/2019/go/utils"
99
)
1010

1111
const w, h = 25, 6

2019/go/09/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"os"
66
"time"
77

8-
"github.com/sanderploegsma/advent-of-code/2019/utils"
8+
"github.com/sanderploegsma/advent-of-code/2019/go/utils"
99
)
1010

1111
func main() {

2019/go/10/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"strings"
88
"time"
99

10-
"github.com/sanderploegsma/advent-of-code/2019/utils"
10+
"github.com/sanderploegsma/advent-of-code/2019/go/utils"
1111
)
1212

1313
func main() {

2019/go/11/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"os"
77
"time"
88

9-
"github.com/sanderploegsma/advent-of-code/2019/utils"
9+
"github.com/sanderploegsma/advent-of-code/2019/go/utils"
1010
)
1111

1212
const (

2019/go/12/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"reflect"
66
"time"
77

8-
"github.com/sanderploegsma/advent-of-code/2019/utils"
8+
"github.com/sanderploegsma/advent-of-code/2019/go/utils"
99
)
1010

1111
var input = [][]int{

2019/go/13/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"os"
66

7-
"github.com/sanderploegsma/advent-of-code/2019/utils"
7+
"github.com/sanderploegsma/advent-of-code/2019/go/utils"
88
)
99

1010
const (

2019/go/14/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"regexp"
88
"strconv"
99

10-
"github.com/sanderploegsma/advent-of-code/2019/utils"
10+
"github.com/sanderploegsma/advent-of-code/2019/go/utils"
1111
)
1212

1313
func main() {

2019/go/15/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"math"
66
"os"
77

8-
"github.com/sanderploegsma/advent-of-code/2019/utils"
8+
"github.com/sanderploegsma/advent-of-code/2019/go/utils"
99
)
1010

1111
const (

2019/go/16/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"os"
66
"strconv"
77

8-
"github.com/sanderploegsma/advent-of-code/2019/utils"
8+
"github.com/sanderploegsma/advent-of-code/2019/go/utils"
99
)
1010

1111
func main() {

2019/go/17/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"os"
66

7-
"github.com/sanderploegsma/advent-of-code/2019/utils"
7+
"github.com/sanderploegsma/advent-of-code/2019/go/utils"
88
)
99

1010
const (

2019/go/19/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"os"
66

7-
"github.com/sanderploegsma/advent-of-code/2019/utils"
7+
"github.com/sanderploegsma/advent-of-code/2019/go/utils"
88
)
99

1010
func main() {

2019/go/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/sanderploegsma/advent-of-code/2019
1+
module github.com/sanderploegsma/advent-of-code/2019/go
22

33
go 1.13
44

0 commit comments

Comments
 (0)