File tree 5 files changed +5
-5
lines changed
02-code-project-organization
6-interface-producer/client
08-concurrency-foundations/60-contexts
11-testing/90-testing-features/different-package
5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -2,4 +2,4 @@ module github.com/teivah/100-go-mistakes
2
2
3
3
go 1.18
4
4
5
- require golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
5
+ require golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package main
3
3
import (
4
4
"fmt"
5
5
6
- "github.com/teivah/100-go-mistakes/02-code-project-organization/3-init-functions/redis"
6
+ "github.com/teivah/100-go-mistakes/src/ 02-code-project-organization/3-init-functions/redis"
7
7
)
8
8
9
9
func init () {
Original file line number Diff line number Diff line change 1
1
package client
2
2
3
- import "github.com/teivah/100-go-mistakes/02-code-project-organization/6-interface-producer/store"
3
+ import "github.com/teivah/100-go-mistakes/src/ 02-code-project-organization/6-interface-producer/store"
4
4
5
5
type customersGetter interface {
6
6
GetAllCustomers () ([]store.Customer , error )
Original file line number Diff line number Diff line change 5
5
"net/http"
6
6
"time"
7
7
8
- "github.com/teivah/100-go-mistakes/08-concurrency-foundations/60-contexts/flight"
8
+ "github.com/teivah/100-go-mistakes/src/ 08-concurrency-foundations/60-contexts/flight"
9
9
)
10
10
11
11
type publisher interface {
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package counter_test
3
3
import (
4
4
"testing"
5
5
6
- counter "github.com/teivah/100-go-mistakes/11-testing/90-testing-features/different-package"
6
+ counter "github.com/teivah/100-go-mistakes/src/ 11-testing/90-testing-features/different-package"
7
7
)
8
8
9
9
func TestCount (t * testing.T ) {
You can’t perform that action at this time.
0 commit comments