File tree Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 4
4
"github.com/devlights/try-golang/internal/effectivego"
5
5
"github.com/devlights/try-golang/internal/examples/advanced"
6
6
"github.com/devlights/try-golang/internal/examples/basic"
7
- "github.com/devlights/try-golang/pkg/mappings"
8
7
"github.com/devlights/try-golang/internal/tutorial"
8
+ "github.com/devlights/try-golang/pkg/mappings"
9
9
)
10
10
11
11
// BuildMappings は、サンプル実行のためのマッピング情報を構築します.
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package sets
3
3
import (
4
4
"fmt"
5
5
6
- "github.com/deckarep/golang-set"
6
+ mapset "github.com/deckarep/golang-set"
7
7
)
8
8
9
9
// Set01 - mapset.NewSet() の サンプル
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package sets
3
3
import (
4
4
"fmt"
5
5
6
- "github.com/deckarep/golang-set"
6
+ mapset "github.com/deckarep/golang-set"
7
7
)
8
8
9
9
// Set02 -- Set.Union() の 動作確認のサンプルです。
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package sets
3
3
import (
4
4
"fmt"
5
5
6
- "github.com/deckarep/golang-set"
6
+ mapset "github.com/deckarep/golang-set"
7
7
)
8
8
9
9
// Set03 -- Set.Difference() の動作確認のサンプルです。
Original file line number Diff line number Diff line change @@ -17,8 +17,8 @@ import (
17
17
"github.com/devlights/try-golang/internal/examples/basic/formatting"
18
18
"github.com/devlights/try-golang/internal/examples/basic/functions"
19
19
"github.com/devlights/try-golang/internal/examples/basic/helloworld"
20
- "github.com/devlights/try-golang/internal/examples/basic/interfaces"
21
20
"github.com/devlights/try-golang/internal/examples/basic/imports"
21
+ "github.com/devlights/try-golang/internal/examples/basic/interfaces"
22
22
"github.com/devlights/try-golang/internal/examples/basic/internalpkg"
23
23
"github.com/devlights/try-golang/internal/examples/basic/literals"
24
24
"github.com/devlights/try-golang/internal/examples/basic/logging"
Original file line number Diff line number Diff line change 1
1
package tutorial
2
2
3
3
import (
4
- "github.com/devlights/try-golang/pkg/mappings"
5
4
"github.com/devlights/try-golang/internal/tutorial/tutorial01"
6
5
"github.com/devlights/try-golang/internal/tutorial/tutorial02"
7
6
"github.com/devlights/try-golang/internal/tutorial/tutorial03"
@@ -31,6 +30,7 @@ import (
31
30
"github.com/devlights/try-golang/internal/tutorial/tutorial27"
32
31
"github.com/devlights/try-golang/internal/tutorial/tutorial28"
33
32
"github.com/devlights/try-golang/internal/tutorial/tutorial29"
33
+ "github.com/devlights/try-golang/pkg/mappings"
34
34
)
35
35
36
36
type (
You can’t perform that action at this time.
0 commit comments