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 44 "github.com/devlights/try-golang/internal/effectivego"
55 "github.com/devlights/try-golang/internal/examples/advanced"
66 "github.com/devlights/try-golang/internal/examples/basic"
7- "github.com/devlights/try-golang/pkg/mappings"
87 "github.com/devlights/try-golang/internal/tutorial"
8+ "github.com/devlights/try-golang/pkg/mappings"
99)
1010
1111// BuildMappings は、サンプル実行のためのマッピング情報を構築します.
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package sets
33import (
44 "fmt"
55
6- "github.com/deckarep/golang-set"
6+ mapset "github.com/deckarep/golang-set"
77)
88
99// Set01 - mapset.NewSet() の サンプル
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package sets
33import (
44 "fmt"
55
6- "github.com/deckarep/golang-set"
6+ mapset "github.com/deckarep/golang-set"
77)
88
99// Set02 -- Set.Union() の 動作確認のサンプルです。
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package sets
33import (
44 "fmt"
55
6- "github.com/deckarep/golang-set"
6+ mapset "github.com/deckarep/golang-set"
77)
88
99// Set03 -- Set.Difference() の動作確認のサンプルです。
Original file line number Diff line number Diff line change @@ -17,8 +17,8 @@ import (
1717 "github.com/devlights/try-golang/internal/examples/basic/formatting"
1818 "github.com/devlights/try-golang/internal/examples/basic/functions"
1919 "github.com/devlights/try-golang/internal/examples/basic/helloworld"
20- "github.com/devlights/try-golang/internal/examples/basic/interfaces"
2120 "github.com/devlights/try-golang/internal/examples/basic/imports"
21+ "github.com/devlights/try-golang/internal/examples/basic/interfaces"
2222 "github.com/devlights/try-golang/internal/examples/basic/internalpkg"
2323 "github.com/devlights/try-golang/internal/examples/basic/literals"
2424 "github.com/devlights/try-golang/internal/examples/basic/logging"
Original file line number Diff line number Diff line change 11package tutorial
22
33import (
4- "github.com/devlights/try-golang/pkg/mappings"
54 "github.com/devlights/try-golang/internal/tutorial/tutorial01"
65 "github.com/devlights/try-golang/internal/tutorial/tutorial02"
76 "github.com/devlights/try-golang/internal/tutorial/tutorial03"
@@ -31,6 +30,7 @@ import (
3130 "github.com/devlights/try-golang/internal/tutorial/tutorial27"
3231 "github.com/devlights/try-golang/internal/tutorial/tutorial28"
3332 "github.com/devlights/try-golang/internal/tutorial/tutorial29"
33+ "github.com/devlights/try-golang/pkg/mappings"
3434)
3535
3636type (
You can’t perform that action at this time.
0 commit comments