Skip to content

Commit

Permalink
chore(client/orb): Move transports to client/orb/transport/*, pt2
Browse files Browse the repository at this point in the history
  • Loading branch information
jochumdev committed Sep 25, 2024
1 parent 371b846 commit 2250c97
Show file tree
Hide file tree
Showing 35 changed files with 66 additions and 85 deletions.
2 changes: 1 addition & 1 deletion client/orb/transport/basehertz/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ toolchain go1.23.0
require (
github.com/cloudwego/hertz v0.9.2
github.com/go-orb/go-orb v0.0.0-20240902034447-508ce5c54a46
github.com/go-orb/plugins/client/orb v0.0.0-20240902051655-0791c4c590b6
github.com/go-orb/plugins/client/orb v0.0.0-20240925070424-371b8463d2d6
)

require (
Expand Down
4 changes: 2 additions & 2 deletions client/orb/transport/basehertz/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ github.com/fsnotify/fsnotify v1.7.0 h1:8JEhPFa5W2WU7YfeZzPNqzMP6Lwt7L2715Ggo0nos
github.com/fsnotify/fsnotify v1.7.0/go.mod h1:40Bi/Hjc2AVfZrqy+aj+yEI+/bRxZnMJyTJwOpGvigM=
github.com/go-orb/go-orb v0.0.0-20240902034447-508ce5c54a46 h1:kynKV0pnA25VVy4Ek3HxPwnLszjlheDnAZJRS0nvsTI=
github.com/go-orb/go-orb v0.0.0-20240902034447-508ce5c54a46/go.mod h1:DdL+EYRtGU8OMU4H7NSQvRxRVzL+GBliOVWC0QHKuy0=
github.com/go-orb/plugins/client/orb v0.0.0-20240902051655-0791c4c590b6 h1:ApLZEVY4Y2LjM+UXQuzvo4jIAEctuGLWWid0jVHapN8=
github.com/go-orb/plugins/client/orb v0.0.0-20240902051655-0791c4c590b6/go.mod h1:Qg5XnIGP+Jj8pf72HX7veXL+juDjTauvJyyiHsoHx3Q=
github.com/go-orb/plugins/client/orb v0.0.0-20240925070424-371b8463d2d6 h1:D+rAvna8tsbHHPbOHbQZKX7mj8sokRop7jdA4bJ2GVo=
github.com/go-orb/plugins/client/orb v0.0.0-20240925070424-371b8463d2d6/go.mod h1:BEgwqPPMVPQbiM/Bg8DP4lKtUMiSRgmQmkysqfwyqYU=
github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk=
github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
Expand Down
9 changes: 3 additions & 6 deletions client/orb/transport/h2c/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,8 @@ toolchain go1.23.0

require (
github.com/go-orb/go-orb v0.0.0-20240902034447-508ce5c54a46
github.com/go-orb/plugins/client/orb v0.0.0-20240902051655-0791c4c590b6
github.com/go-orb/plugins/client/orb/transport/basehttp v0.0.0-20240902051655-0791c4c590b6
github.com/go-orb/plugins/client/orb v0.0.0-20240925070424-371b8463d2d6
github.com/go-orb/plugins/client/orb/transport/basehttp v0.0.0-20240925070424-371b8463d2d6
)

require (
github.com/cornelk/hashmap v1.0.8 // indirect
github.com/stretchr/testify v1.9.0 // indirect
)
require github.com/cornelk/hashmap v1.0.8 // indirect
8 changes: 4 additions & 4 deletions client/orb/transport/h2c/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/go-orb/go-orb v0.0.0-20240902034447-508ce5c54a46 h1:kynKV0pnA25VVy4Ek3HxPwnLszjlheDnAZJRS0nvsTI=
github.com/go-orb/go-orb v0.0.0-20240902034447-508ce5c54a46/go.mod h1:DdL+EYRtGU8OMU4H7NSQvRxRVzL+GBliOVWC0QHKuy0=
github.com/go-orb/plugins/client/orb v0.0.0-20240902051655-0791c4c590b6 h1:ApLZEVY4Y2LjM+UXQuzvo4jIAEctuGLWWid0jVHapN8=
github.com/go-orb/plugins/client/orb v0.0.0-20240902051655-0791c4c590b6/go.mod h1:Qg5XnIGP+Jj8pf72HX7veXL+juDjTauvJyyiHsoHx3Q=
github.com/go-orb/plugins/client/orb/transport/basehttp v0.0.0-20240902051655-0791c4c590b6 h1:SsreAOpca3mhajJkMzj7tf4+jw8m2upzvM2g/t62vNI=
github.com/go-orb/plugins/client/orb/transport/basehttp v0.0.0-20240902051655-0791c4c590b6/go.mod h1:Uu4iagAXCdI2kIYk4m1LUKzZppxeT2NAFZeVtf2dZvc=
github.com/go-orb/plugins/client/orb v0.0.0-20240925070424-371b8463d2d6 h1:D+rAvna8tsbHHPbOHbQZKX7mj8sokRop7jdA4bJ2GVo=
github.com/go-orb/plugins/client/orb v0.0.0-20240925070424-371b8463d2d6/go.mod h1:BEgwqPPMVPQbiM/Bg8DP4lKtUMiSRgmQmkysqfwyqYU=
github.com/go-orb/plugins/client/orb/transport/basehttp v0.0.0-20240925070424-371b8463d2d6 h1:Yg77wwflEKgqLF5BBXxqxFWZmUBIvpGNaFIg1yLzswQ=
github.com/go-orb/plugins/client/orb/transport/basehttp v0.0.0-20240925070424-371b8463d2d6/go.mod h1:PmXuv0RTm1fidP1aBciqmzsxsGHN399dwPM+xd0MG+I=
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRIccs7FGNTlIRMkT8wgtp5eCXdBlqhYGL6U=
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg=
Expand Down
4 changes: 2 additions & 2 deletions client/orb/transport/hertzh2c/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ toolchain go1.23.0
require (
github.com/cloudwego/hertz v0.9.2
github.com/go-orb/go-orb v0.0.0-20240902034447-508ce5c54a46
github.com/go-orb/plugins/client/orb v0.0.0-20240902051655-0791c4c590b6
github.com/go-orb/plugins/client/orb/transport/basehertz v0.0.0-20240902051655-0791c4c590b6
github.com/go-orb/plugins/client/orb v0.0.0-20240925070424-371b8463d2d6
github.com/go-orb/plugins/client/orb/transport/basehertz v0.0.0-20240925070424-371b8463d2d6
github.com/hertz-contrib/http2 v0.1.8
)

Expand Down
8 changes: 4 additions & 4 deletions client/orb/transport/hertzh2c/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ github.com/fsnotify/fsnotify v1.7.0 h1:8JEhPFa5W2WU7YfeZzPNqzMP6Lwt7L2715Ggo0nos
github.com/fsnotify/fsnotify v1.7.0/go.mod h1:40Bi/Hjc2AVfZrqy+aj+yEI+/bRxZnMJyTJwOpGvigM=
github.com/go-orb/go-orb v0.0.0-20240902034447-508ce5c54a46 h1:kynKV0pnA25VVy4Ek3HxPwnLszjlheDnAZJRS0nvsTI=
github.com/go-orb/go-orb v0.0.0-20240902034447-508ce5c54a46/go.mod h1:DdL+EYRtGU8OMU4H7NSQvRxRVzL+GBliOVWC0QHKuy0=
github.com/go-orb/plugins/client/orb v0.0.0-20240902051655-0791c4c590b6 h1:ApLZEVY4Y2LjM+UXQuzvo4jIAEctuGLWWid0jVHapN8=
github.com/go-orb/plugins/client/orb v0.0.0-20240902051655-0791c4c590b6/go.mod h1:Qg5XnIGP+Jj8pf72HX7veXL+juDjTauvJyyiHsoHx3Q=
github.com/go-orb/plugins/client/orb/transport/basehertz v0.0.0-20240902051655-0791c4c590b6 h1:ViV4raWij2QMSHhPRNmS3fdmj2w4TFjGMa08PNsELyc=
github.com/go-orb/plugins/client/orb/transport/basehertz v0.0.0-20240902051655-0791c4c590b6/go.mod h1:oZobD0Ybio0/sN+qjHcK25HyRVuqaOyEf58HQdHq4e0=
github.com/go-orb/plugins/client/orb v0.0.0-20240925070424-371b8463d2d6 h1:D+rAvna8tsbHHPbOHbQZKX7mj8sokRop7jdA4bJ2GVo=
github.com/go-orb/plugins/client/orb v0.0.0-20240925070424-371b8463d2d6/go.mod h1:BEgwqPPMVPQbiM/Bg8DP4lKtUMiSRgmQmkysqfwyqYU=
github.com/go-orb/plugins/client/orb/transport/basehertz v0.0.0-20240925070424-371b8463d2d6 h1:BklZDHZ78Bo206lspD2o7tsEN75pFI8RhXaR+Ac5nI0=
github.com/go-orb/plugins/client/orb/transport/basehertz v0.0.0-20240925070424-371b8463d2d6/go.mod h1:36m63lLcGe1B6ZrMPi1zONAY6fCImiwQ00sFP/boFG0=
github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk=
github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
Expand Down
4 changes: 2 additions & 2 deletions client/orb/transport/hertzhttp/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ toolchain go1.23.0
require (
github.com/cloudwego/hertz v0.9.2
github.com/go-orb/go-orb v0.0.0-20240902034447-508ce5c54a46
github.com/go-orb/plugins/client/orb v0.0.0-20240902051655-0791c4c590b6
github.com/go-orb/plugins/client/orb/transport/basehertz v0.0.0-20240902051655-0791c4c590b6
github.com/go-orb/plugins/client/orb v0.0.0-20240925070424-371b8463d2d6
github.com/go-orb/plugins/client/orb/transport/basehertz v0.0.0-20240925070424-371b8463d2d6
)

require (
Expand Down
8 changes: 4 additions & 4 deletions client/orb/transport/hertzhttp/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ github.com/fsnotify/fsnotify v1.7.0 h1:8JEhPFa5W2WU7YfeZzPNqzMP6Lwt7L2715Ggo0nos
github.com/fsnotify/fsnotify v1.7.0/go.mod h1:40Bi/Hjc2AVfZrqy+aj+yEI+/bRxZnMJyTJwOpGvigM=
github.com/go-orb/go-orb v0.0.0-20240902034447-508ce5c54a46 h1:kynKV0pnA25VVy4Ek3HxPwnLszjlheDnAZJRS0nvsTI=
github.com/go-orb/go-orb v0.0.0-20240902034447-508ce5c54a46/go.mod h1:DdL+EYRtGU8OMU4H7NSQvRxRVzL+GBliOVWC0QHKuy0=
github.com/go-orb/plugins/client/orb v0.0.0-20240902051655-0791c4c590b6 h1:ApLZEVY4Y2LjM+UXQuzvo4jIAEctuGLWWid0jVHapN8=
github.com/go-orb/plugins/client/orb v0.0.0-20240902051655-0791c4c590b6/go.mod h1:Qg5XnIGP+Jj8pf72HX7veXL+juDjTauvJyyiHsoHx3Q=
github.com/go-orb/plugins/client/orb/transport/basehertz v0.0.0-20240902051655-0791c4c590b6 h1:ViV4raWij2QMSHhPRNmS3fdmj2w4TFjGMa08PNsELyc=
github.com/go-orb/plugins/client/orb/transport/basehertz v0.0.0-20240902051655-0791c4c590b6/go.mod h1:oZobD0Ybio0/sN+qjHcK25HyRVuqaOyEf58HQdHq4e0=
github.com/go-orb/plugins/client/orb v0.0.0-20240925070424-371b8463d2d6 h1:D+rAvna8tsbHHPbOHbQZKX7mj8sokRop7jdA4bJ2GVo=
github.com/go-orb/plugins/client/orb v0.0.0-20240925070424-371b8463d2d6/go.mod h1:BEgwqPPMVPQbiM/Bg8DP4lKtUMiSRgmQmkysqfwyqYU=
github.com/go-orb/plugins/client/orb/transport/basehertz v0.0.0-20240925070424-371b8463d2d6 h1:BklZDHZ78Bo206lspD2o7tsEN75pFI8RhXaR+Ac5nI0=
github.com/go-orb/plugins/client/orb/transport/basehertz v0.0.0-20240925070424-371b8463d2d6/go.mod h1:36m63lLcGe1B6ZrMPi1zONAY6fCImiwQ00sFP/boFG0=
github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk=
github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
Expand Down
9 changes: 3 additions & 6 deletions client/orb/transport/http/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,8 @@ toolchain go1.23.0

require (
github.com/go-orb/go-orb v0.0.0-20240902034447-508ce5c54a46
github.com/go-orb/plugins/client/orb v0.0.0-20240902051655-0791c4c590b6
github.com/go-orb/plugins/client/orb/transport/basehttp v0.0.0-20240902051655-0791c4c590b6
github.com/go-orb/plugins/client/orb v0.0.0-20240925070424-371b8463d2d6
github.com/go-orb/plugins/client/orb/transport/basehttp v0.0.0-20240925070424-371b8463d2d6
)

require (
github.com/cornelk/hashmap v1.0.8 // indirect
github.com/stretchr/testify v1.9.0 // indirect
)
require github.com/cornelk/hashmap v1.0.8 // indirect
8 changes: 4 additions & 4 deletions client/orb/transport/http/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/go-orb/go-orb v0.0.0-20240902034447-508ce5c54a46 h1:kynKV0pnA25VVy4Ek3HxPwnLszjlheDnAZJRS0nvsTI=
github.com/go-orb/go-orb v0.0.0-20240902034447-508ce5c54a46/go.mod h1:DdL+EYRtGU8OMU4H7NSQvRxRVzL+GBliOVWC0QHKuy0=
github.com/go-orb/plugins/client/orb v0.0.0-20240902051655-0791c4c590b6 h1:ApLZEVY4Y2LjM+UXQuzvo4jIAEctuGLWWid0jVHapN8=
github.com/go-orb/plugins/client/orb v0.0.0-20240902051655-0791c4c590b6/go.mod h1:Qg5XnIGP+Jj8pf72HX7veXL+juDjTauvJyyiHsoHx3Q=
github.com/go-orb/plugins/client/orb/transport/basehttp v0.0.0-20240902051655-0791c4c590b6 h1:SsreAOpca3mhajJkMzj7tf4+jw8m2upzvM2g/t62vNI=
github.com/go-orb/plugins/client/orb/transport/basehttp v0.0.0-20240902051655-0791c4c590b6/go.mod h1:Uu4iagAXCdI2kIYk4m1LUKzZppxeT2NAFZeVtf2dZvc=
github.com/go-orb/plugins/client/orb v0.0.0-20240925070424-371b8463d2d6 h1:D+rAvna8tsbHHPbOHbQZKX7mj8sokRop7jdA4bJ2GVo=
github.com/go-orb/plugins/client/orb v0.0.0-20240925070424-371b8463d2d6/go.mod h1:BEgwqPPMVPQbiM/Bg8DP4lKtUMiSRgmQmkysqfwyqYU=
github.com/go-orb/plugins/client/orb/transport/basehttp v0.0.0-20240925070424-371b8463d2d6 h1:Yg77wwflEKgqLF5BBXxqxFWZmUBIvpGNaFIg1yLzswQ=
github.com/go-orb/plugins/client/orb/transport/basehttp v0.0.0-20240925070424-371b8463d2d6/go.mod h1:PmXuv0RTm1fidP1aBciqmzsxsGHN399dwPM+xd0MG+I=
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRIccs7FGNTlIRMkT8wgtp5eCXdBlqhYGL6U=
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg=
Expand Down
4 changes: 2 additions & 2 deletions client/orb/transport/http3/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ toolchain go1.23.0

require (
github.com/go-orb/go-orb v0.0.0-20240902034447-508ce5c54a46
github.com/go-orb/plugins/client/orb v0.0.0-20240902051655-0791c4c590b6
github.com/go-orb/plugins/client/orb/transport/basehttp v0.0.0-20240902051655-0791c4c590b6
github.com/go-orb/plugins/client/orb v0.0.0-20240925070424-371b8463d2d6
github.com/go-orb/plugins/client/orb/transport/basehttp v0.0.0-20240925070424-371b8463d2d6
github.com/quic-go/quic-go v0.46.0
)

Expand Down
8 changes: 4 additions & 4 deletions client/orb/transport/http3/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ github.com/go-logr/logr v1.4.2 h1:6pFjapn8bFcIbiKo3XT4j/BhANplGihG6tvd+8rYgrY=
github.com/go-logr/logr v1.4.2/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY=
github.com/go-orb/go-orb v0.0.0-20240902034447-508ce5c54a46 h1:kynKV0pnA25VVy4Ek3HxPwnLszjlheDnAZJRS0nvsTI=
github.com/go-orb/go-orb v0.0.0-20240902034447-508ce5c54a46/go.mod h1:DdL+EYRtGU8OMU4H7NSQvRxRVzL+GBliOVWC0QHKuy0=
github.com/go-orb/plugins/client/orb v0.0.0-20240902051655-0791c4c590b6 h1:ApLZEVY4Y2LjM+UXQuzvo4jIAEctuGLWWid0jVHapN8=
github.com/go-orb/plugins/client/orb v0.0.0-20240902051655-0791c4c590b6/go.mod h1:Qg5XnIGP+Jj8pf72HX7veXL+juDjTauvJyyiHsoHx3Q=
github.com/go-orb/plugins/client/orb/transport/basehttp v0.0.0-20240902051655-0791c4c590b6 h1:SsreAOpca3mhajJkMzj7tf4+jw8m2upzvM2g/t62vNI=
github.com/go-orb/plugins/client/orb/transport/basehttp v0.0.0-20240902051655-0791c4c590b6/go.mod h1:Uu4iagAXCdI2kIYk4m1LUKzZppxeT2NAFZeVtf2dZvc=
github.com/go-orb/plugins/client/orb v0.0.0-20240925070424-371b8463d2d6 h1:D+rAvna8tsbHHPbOHbQZKX7mj8sokRop7jdA4bJ2GVo=
github.com/go-orb/plugins/client/orb v0.0.0-20240925070424-371b8463d2d6/go.mod h1:BEgwqPPMVPQbiM/Bg8DP4lKtUMiSRgmQmkysqfwyqYU=
github.com/go-orb/plugins/client/orb/transport/basehttp v0.0.0-20240925070424-371b8463d2d6 h1:Yg77wwflEKgqLF5BBXxqxFWZmUBIvpGNaFIg1yLzswQ=
github.com/go-orb/plugins/client/orb/transport/basehttp v0.0.0-20240925070424-371b8463d2d6/go.mod h1:PmXuv0RTm1fidP1aBciqmzsxsGHN399dwPM+xd0MG+I=
github.com/go-task/slim-sprig/v3 v3.0.0 h1:sUs3vkvUymDpBKi3qH1YSqBQk9+9D/8M2mN1vB6EwHI=
github.com/go-task/slim-sprig/v3 v3.0.0/go.mod h1:W848ghGpv3Qj3dhTPRyJypKRiqCdHZiAzKg9hl15HA8=
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
Expand Down
9 changes: 3 additions & 6 deletions client/orb/transport/https/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,8 @@ toolchain go1.23.0

require (
github.com/go-orb/go-orb v0.0.0-20240902034447-508ce5c54a46
github.com/go-orb/plugins/client/orb v0.0.0-20240902051655-0791c4c590b6
github.com/go-orb/plugins/client/orb/transport/basehttp v0.0.0-20240902051655-0791c4c590b6
github.com/go-orb/plugins/client/orb v0.0.0-20240925070424-371b8463d2d6
github.com/go-orb/plugins/client/orb/transport/basehttp v0.0.0-20240925070424-371b8463d2d6
)

require (
github.com/cornelk/hashmap v1.0.8 // indirect
github.com/stretchr/testify v1.9.0 // indirect
)
require github.com/cornelk/hashmap v1.0.8 // indirect
8 changes: 4 additions & 4 deletions client/orb/transport/https/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/go-orb/go-orb v0.0.0-20240902034447-508ce5c54a46 h1:kynKV0pnA25VVy4Ek3HxPwnLszjlheDnAZJRS0nvsTI=
github.com/go-orb/go-orb v0.0.0-20240902034447-508ce5c54a46/go.mod h1:DdL+EYRtGU8OMU4H7NSQvRxRVzL+GBliOVWC0QHKuy0=
github.com/go-orb/plugins/client/orb v0.0.0-20240902051655-0791c4c590b6 h1:ApLZEVY4Y2LjM+UXQuzvo4jIAEctuGLWWid0jVHapN8=
github.com/go-orb/plugins/client/orb v0.0.0-20240902051655-0791c4c590b6/go.mod h1:Qg5XnIGP+Jj8pf72HX7veXL+juDjTauvJyyiHsoHx3Q=
github.com/go-orb/plugins/client/orb/transport/basehttp v0.0.0-20240902051655-0791c4c590b6 h1:SsreAOpca3mhajJkMzj7tf4+jw8m2upzvM2g/t62vNI=
github.com/go-orb/plugins/client/orb/transport/basehttp v0.0.0-20240902051655-0791c4c590b6/go.mod h1:Uu4iagAXCdI2kIYk4m1LUKzZppxeT2NAFZeVtf2dZvc=
github.com/go-orb/plugins/client/orb v0.0.0-20240925070424-371b8463d2d6 h1:D+rAvna8tsbHHPbOHbQZKX7mj8sokRop7jdA4bJ2GVo=
github.com/go-orb/plugins/client/orb v0.0.0-20240925070424-371b8463d2d6/go.mod h1:BEgwqPPMVPQbiM/Bg8DP4lKtUMiSRgmQmkysqfwyqYU=
github.com/go-orb/plugins/client/orb/transport/basehttp v0.0.0-20240925070424-371b8463d2d6 h1:Yg77wwflEKgqLF5BBXxqxFWZmUBIvpGNaFIg1yLzswQ=
github.com/go-orb/plugins/client/orb/transport/basehttp v0.0.0-20240925070424-371b8463d2d6/go.mod h1:PmXuv0RTm1fidP1aBciqmzsxsGHN399dwPM+xd0MG+I=
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRIccs7FGNTlIRMkT8wgtp5eCXdBlqhYGL6U=
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg=
Expand Down
2 changes: 1 addition & 1 deletion client/tests/cmd/tests_server/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ import (
"github.com/go-orb/go-orb/log"
"github.com/go-orb/go-orb/types"

_ "github.com/go-orb/plugins-experimental/registry/mdns"
_ "github.com/go-orb/plugins/codecs/jsonpb"
_ "github.com/go-orb/plugins/codecs/proto"
_ "github.com/go-orb/plugins/codecs/yaml"
_ "github.com/go-orb/plugins/config/source/cli/urfave"
_ "github.com/go-orb/plugins/config/source/file"
_ "github.com/go-orb/plugins/log/lumberjack"
_ "github.com/go-orb/plugins/log/slog"
_ "github.com/go-orb/plugins/registry/mdns"
_ "github.com/go-orb/plugins/server/http/router/chi"
)

Expand Down
2 changes: 1 addition & 1 deletion client/tests/cmd/tests_server/wire_gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 0 additions & 10 deletions client/tests/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,13 @@ toolchain go1.23.0

require (
github.com/go-orb/go-orb v0.0.0-20240902034447-508ce5c54a46
github.com/go-orb/plugins/client/orb/transport/drpc v0.0.0-20240902051655-0791c4c590b6
github.com/go-orb/plugins/client/orb/transport/grpc v0.0.0-20240902051655-0791c4c590b6
github.com/go-orb/plugins/client/orb/transport/h2c v0.0.0-20240902051655-0791c4c590b6
github.com/go-orb/plugins/client/orb/transport/hertzh2c v0.0.0-20240902051655-0791c4c590b6
github.com/go-orb/plugins/client/orb/transport/hertzhttp v0.0.0-20240902051655-0791c4c590b6
github.com/go-orb/plugins/client/orb/transport/http v0.0.0-20240902051655-0791c4c590b6
github.com/go-orb/plugins/client/orb/transport/https v0.0.0-20240902051655-0791c4c590b6
github.com/go-orb/plugins/codecs/jsonpb v0.0.0-20240902051655-0791c4c590b6
github.com/go-orb/plugins/codecs/proto v0.0.0-20240902051655-0791c4c590b6
github.com/go-orb/plugins/codecs/yaml v0.0.0-20240902051655-0791c4c590b6
github.com/go-orb/plugins/config/source/cli/urfave v0.0.0-20240902051655-0791c4c590b6
github.com/go-orb/plugins/config/source/file v0.0.0-20240902051655-0791c4c590b6
github.com/go-orb/plugins/log/lumberjack v0.0.0-20240902051655-0791c4c590b6
github.com/go-orb/plugins/log/slog v0.0.0-20240902051655-0791c4c590b6
github.com/go-orb/plugins/registry/mdns v0.0.0-20240902051655-0791c4c590b6
github.com/go-orb/plugins/server/drpc v0.0.0-20240902051655-0791c4c590b6
github.com/go-orb/plugins/server/grpc v0.0.0-20240902051655-0791c4c590b6
github.com/go-orb/plugins/server/hertz v0.0.0-20240902051655-0791c4c590b6
Expand Down Expand Up @@ -52,8 +44,6 @@ require (
github.com/fsnotify/fsnotify v1.7.0 // indirect
github.com/go-chi/chi/v5 v5.1.0 // indirect
github.com/go-orb/plugins/client/orb v0.0.0-20240902051655-0791c4c590b6 // indirect
github.com/go-orb/plugins/client/orb/transport/basehertz v0.0.0-20240902051655-0791c4c590b6 // indirect
github.com/go-orb/plugins/client/orb/transport/basehttp v0.0.0-20240902051655-0791c4c590b6 // indirect
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
github.com/google/pprof v0.0.0-20240903155634-a8630aee4ab9 // indirect
github.com/google/subcommands v1.2.0 // indirect
Expand Down
4 changes: 2 additions & 2 deletions client/tests/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ github.com/go-orb/plugins/log/lumberjack v0.0.0-20240902051655-0791c4c590b6 h1:G
github.com/go-orb/plugins/log/lumberjack v0.0.0-20240902051655-0791c4c590b6/go.mod h1:OTWZ+VW98TTOXgJeOQnprheZPPbNKZex458A/VsxL1A=
github.com/go-orb/plugins/log/slog v0.0.0-20240902051655-0791c4c590b6 h1:PJHFhvwbSFUdXQGkGRoZDOSOK440bcdjp1ydN+AW0SA=
github.com/go-orb/plugins/log/slog v0.0.0-20240902051655-0791c4c590b6/go.mod h1:i8IVEflSA0tUSw6C+VhY7WGGWixlX2CtxmgFcoPo6AQ=
github.com/go-orb/plugins/registry/mdns v0.0.0-20240902051655-0791c4c590b6 h1:52pJYHgpYg3kYRPEcjJA/NM6Ti7rnyCzb//7M/bxJc8=
github.com/go-orb/plugins/registry/mdns v0.0.0-20240902051655-0791c4c590b6/go.mod h1:81pUignsc2abwFsl3Nm5Dyj3xLpRsPFCaK2g/iPmM5U=
github.com/go-orb/plugins-experimental/registry/mdns v0.0.0-20240902051655-0791c4c590b6 h1:52pJYHgpYg3kYRPEcjJA/NM6Ti7rnyCzb//7M/bxJc8=
github.com/go-orb/plugins-experimental/registry/mdns v0.0.0-20240902051655-0791c4c590b6/go.mod h1:81pUignsc2abwFsl3Nm5Dyj3xLpRsPFCaK2g/iPmM5U=
github.com/go-orb/plugins/registry/tests v0.0.0-20240831184917-808b5ccd97c1 h1:4UP0saycZOoObadGYTPyxoN1TLzjm6LTzIsEg0npTHo=
github.com/go-orb/plugins/registry/tests v0.0.0-20240831184917-808b5ccd97c1/go.mod h1:zwXfOFO2hzeAwzFKWSJE/NaPH4nsGTI10i4NxJBpKYM=
github.com/go-orb/plugins/server/drpc v0.0.0-20240902051655-0791c4c590b6 h1:i9/epjoel48SnK8ceXZfyUw0MHz1M1RodRzy1yuOgVE=
Expand Down
Loading

0 comments on commit 2250c97

Please sign in to comment.