Skip to content

Commit a04be95

Browse files
authored
Merge pull request #391 from devlights/move-gocmp-pkg-to-trygolang-extlib
Move advanced/gocmp package to try-golang-extlib project
2 parents a1efd52 + 15b0471 commit a04be95

File tree

8 files changed

+1
-258
lines changed

8 files changed

+1
-258
lines changed

go.mod

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,9 @@ go 1.16
44

55
require (
66
github.com/adrg/xdg v0.3.0
7-
github.com/cheekybits/genny v1.0.0
87
github.com/deckarep/golang-set v1.7.1
98
github.com/devlights/gomy v0.3.0
109
github.com/getsentry/sentry-go v0.10.0
11-
github.com/google/go-cmp v0.5.4
1210
golang.org/x/crypto v0.0.0-20210218145215-b8e89b74b9df
1311
golang.org/x/sync v0.0.0-20201207232520-09787c993a3a
1412
golang.org/x/text v0.3.5

go.sum

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ github.com/adrg/xdg v0.3.0/go.mod h1:7I2hH/IT30IsupOpKZ5ue7/qNi3CoKzD6tL3HwpaRMQ
99
github.com/ajg/form v1.5.1/go.mod h1:uL1WgH+h2mgNtvBq0339dVnzXdBETtL2LeUXaIv25UY=
1010
github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod h1:grANhF5doyWs3UAsr3K4I6qtAmlQcZDesFNEHPZAzj8=
1111
github.com/aymerick/raymond v2.0.3-0.20180322193309-b565731e1464+incompatible/go.mod h1:osfaiScAUVup+UC9Nfq76eWqDhXlp+4UYaA8uhTBO6g=
12-
github.com/cheekybits/genny v1.0.0 h1:uGGa4nei+j20rOSeDeP5Of12XVm7TGUd4dJA9RDitfE=
13-
github.com/cheekybits/genny v1.0.0/go.mod h1:+tQajlRqAUrPI7DOSpB0XAqZYtQakVtB7wXkRAgjxjQ=
1412
github.com/codegangsta/inject v0.0.0-20150114235600-33e0aa1cb7c0/go.mod h1:4Zcjuz89kmFXt9morQgcfYZAYZ5n8WHjt81YYWIwtTM=
1513
github.com/coreos/etcd v3.3.10+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE=
1614
github.com/coreos/go-etcd v2.0.0+incompatible/go.mod h1:Jez6KQU2B/sWsbdaef3ED8NzMklzPG4d5KIOhIy30Tk=
@@ -49,9 +47,8 @@ github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5y
4947
github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
5048
github.com/gomodule/redigo v1.7.1-0.20190724094224-574c33c3df38/go.mod h1:B4C85qUVwatsJoIUNIfCRsp7qO0iAmpGFZ4EELWSbC4=
5149
github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
50+
github.com/google/go-cmp v0.5.3 h1:x95R7cp+rSeeqAMI2knLtQ0DKlaBhv2NrtrOvafPHRo=
5251
github.com/google/go-cmp v0.5.3/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
53-
github.com/google/go-cmp v0.5.4 h1:L8R9j+yAqZuZjsqh/z+F1NCffTKKLShY6zXTItVIZ8M=
54-
github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
5552
github.com/google/go-querystring v1.0.0/go.mod h1:odCYkC5MyYFN7vkCjXpyrEuKhc/BUO6wN/zVPAxq5ck=
5653
github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg=
5754
github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY=

internal/examples/advanced/examples.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import (
66
"github.com/devlights/try-golang/internal/examples/advanced/crypto"
77
"github.com/devlights/try-golang/internal/examples/advanced/deepcopy"
88
"github.com/devlights/try-golang/internal/examples/advanced/errgrp"
9-
"github.com/devlights/try-golang/internal/examples/advanced/gocmp"
109
"github.com/devlights/try-golang/internal/examples/advanced/japanese"
1110
"github.com/devlights/try-golang/internal/examples/advanced/reflection"
1211
"github.com/devlights/try-golang/internal/examples/advanced/sets"
@@ -31,7 +30,6 @@ func (r *register) Regist(m mappings.ExampleMapping) {
3130
crypto.NewRegister().Regist(m)
3231
deepcopy.NewRegister().Regist(m)
3332
errgrp.NewRegister().Regist(m)
34-
gocmp.NewRegister().Regist(m)
3533
japanese.NewRegister().Regist(m)
3634
reflection.NewRegister().Regist(m)
3735
sets.NewRegister().Regist(m)

internal/examples/advanced/gocmp/README.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

internal/examples/advanced/gocmp/basic.go

Lines changed: 0 additions & 142 deletions
This file was deleted.

internal/examples/advanced/gocmp/doc.go

Lines changed: 0 additions & 4 deletions
This file was deleted.

internal/examples/advanced/gocmp/examples.go

Lines changed: 0 additions & 20 deletions
This file was deleted.

internal/examples/advanced/gocmp/ignore.go

Lines changed: 0 additions & 76 deletions
This file was deleted.

0 commit comments

Comments
 (0)