diff options
| author | Grégoire Duchêne <gduchene@awhk.org> | 2022-05-07 11:57:48 +0100 |
|---|---|---|
| committer | Grégoire Duchêne <gduchene@awhk.org> | 2022-05-07 11:57:48 +0100 |
| commit | f36b620ffb95e14ced6b9f21bad1df153f560109 (patch) | |
| tree | 2d31b2fccc416cf79d7d5491cf44431066307334 | |
| parent | fd7dcf508a153ddb8c9bc7ff50b4a406a25eb67c (diff) | |
Move gRPC tests under internal/
| -rw-r--r-- | internal/grpc_test/.gitignore (renamed from grpc_testing/.gitignore) | 0 | ||||
| -rw-r--r-- | internal/grpc_test/README.md (renamed from grpc_testing/README.md) | 0 | ||||
| -rw-r--r-- | internal/grpc_test/echo.proto (renamed from grpc_testing/echo.proto) | 0 | ||||
| -rw-r--r-- | internal/grpc_test/go.mod (renamed from grpc_testing/go.mod) | 4 | ||||
| -rw-r--r-- | internal/grpc_test/go.sum (renamed from grpc_testing/go.sum) | 1 | ||||
| -rw-r--r-- | internal/grpc_test/grpc_test.go (renamed from grpc_testing/grpc_test.go) | 0 |
6 files changed, 2 insertions, 3 deletions
diff --git a/grpc_testing/.gitignore b/internal/grpc_test/.gitignore index c61a5e8..c61a5e8 100644 --- a/grpc_testing/.gitignore +++ b/internal/grpc_test/.gitignore diff --git a/grpc_testing/README.md b/internal/grpc_test/README.md index 65bdc18..65bdc18 100644 --- a/grpc_testing/README.md +++ b/internal/grpc_test/README.md diff --git a/grpc_testing/echo.proto b/internal/grpc_test/echo.proto index 513a7bc..513a7bc 100644 --- a/grpc_testing/echo.proto +++ b/internal/grpc_test/echo.proto diff --git a/grpc_testing/go.mod b/internal/grpc_test/go.mod index 79649d7..7a8e7a1 100644 --- a/grpc_testing/go.mod +++ b/internal/grpc_test/go.mod @@ -1,4 +1,4 @@ -module grpc_testing +module go.awhk.org/pipeln/internal/grpc_test go 1.18 @@ -20,4 +20,4 @@ require ( gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect ) -replace go.awhk.org/pipeln => ../ +replace go.awhk.org/pipeln => ../../ diff --git a/grpc_testing/go.sum b/internal/grpc_test/go.sum index 4648a26..8c3ccef 100644 --- a/grpc_testing/go.sum +++ b/internal/grpc_test/go.sum @@ -85,7 +85,6 @@ golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210316092937-0b90fd5c4c48/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220503163025-988cb79eb6c6 h1:nonptSpoQ4vQjyraW20DXPAglgQfVnM9ZC6MmNLMR60= diff --git a/grpc_testing/grpc_test.go b/internal/grpc_test/grpc_test.go index 1bd782d..1bd782d 100644 --- a/grpc_testing/grpc_test.go +++ b/internal/grpc_test/grpc_test.go |
