Skip to content

Commit

Permalink
Transfer dependencies to new organisation
Browse files Browse the repository at this point in the history
Signed-off-by: David Schall <[email protected]>
  • Loading branch information
dhschall committed Oct 2, 2022
1 parent f88e1ff commit f4db7b5
Show file tree
Hide file tree
Showing 23 changed files with 69 additions and 57 deletions.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# vSwarm-proto

vSwarm-proto is a utility for [vSwarm](https://github.com/ease-lab/vSwarm/) containing all the proto files and client applications necessary to run benchmarks using [relay](https://github.com/ease-lab/vSwarm/tree/main/tools/relay).
vSwarm-proto is a utility for [vSwarm](https://github.com/ease-lab/vSwarm/) containing all the proto files and client applications necessary to run benchmarks using [relay](https://github.com/ease-lab/vSwarm/tree/main/tools/relay). As such its part of the [vHive Ecosystem](https://vhive-serverless.github.io/).

## License and copyright

vSwarm-proto is free. We publish the code under the terms of the MIT License that allows distribution, modification, and commercial use.
This software, however, comes without any warranty or liability.

The software is maintained by the [vHive Ecosystem](https://vhive-serverless.github.io/).
Join the vHive Open-Source Community!
14 changes: 7 additions & 7 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
module github.com/ease-lab/vSwarm-proto
module github.com/vhive-serverless/vSwarm-proto

go 1.16

replace (
github.com/ease-lab/vSwarm-proto/proto/aes => ./proto/aes
github.com/ease-lab/vSwarm-proto/proto/auth => ./proto/auth
github.com/ease-lab/vSwarm-proto/proto/fibonacci => ./proto/fibonacci
github.com/ease-lab/vSwarm-proto/proto/helloworld => ./proto/helloworld
github.com/ease-lab/vSwarm-proto/proto/hipstershop => ./proto/hipstershop
github.com/ease-lab/vSwarm-proto/proto/hotel_reserv => ./proto/hotel_reserv
github.com/vhive-serverless/vSwarm-proto/proto/aes => ./proto/aes
github.com/vhive-serverless/vSwarm-proto/proto/auth => ./proto/auth
github.com/vhive-serverless/vSwarm-proto/proto/fibonacci => ./proto/fibonacci
github.com/vhive-serverless/vSwarm-proto/proto/helloworld => ./proto/helloworld
github.com/vhive-serverless/vSwarm-proto/proto/hipstershop => ./proto/hipstershop
github.com/vhive-serverless/vSwarm-proto/proto/hotel_reserv => ./proto/hotel_reserv
)

require (
Expand Down
2 changes: 1 addition & 1 deletion grpcclient/aes_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package grpcclient
import (
"context"

pb "github.com/ease-lab/vSwarm-proto/proto/aes"
pb "github.com/vhive-serverless/vSwarm-proto/proto/aes"
log "github.com/sirupsen/logrus"
)

Expand Down
2 changes: 1 addition & 1 deletion grpcclient/auth_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package grpcclient
import (
"context"

pb "github.com/ease-lab/vSwarm-proto/proto/auth"
pb "github.com/vhive-serverless/vSwarm-proto/proto/auth"
log "github.com/sirupsen/logrus"
)

Expand Down
2 changes: 1 addition & 1 deletion grpcclient/fibonacci_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"math/rand"

pb "github.com/ease-lab/vSwarm-proto/proto/fibonacci"
pb "github.com/vhive-serverless/vSwarm-proto/proto/fibonacci"
log "github.com/sirupsen/logrus"
)

Expand Down
2 changes: 1 addition & 1 deletion grpcclient/helloworld_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package grpcclient
import (
"context"

pb "github.com/ease-lab/vSwarm-proto/proto/helloworld"
pb "github.com/vhive-serverless/vSwarm-proto/proto/helloworld"
log "github.com/sirupsen/logrus"
)

Expand Down
2 changes: 1 addition & 1 deletion grpcclient/hipstershop_clients.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"strconv"

pb "github.com/ease-lab/vSwarm-proto/proto/hipstershop"
pb "github.com/vhive-serverless/vSwarm-proto/proto/hipstershop"
log "github.com/sirupsen/logrus"
)

Expand Down
14 changes: 7 additions & 7 deletions grpcclient/hotel_clients.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ import (
"fmt"
"strings"

geo "github.com/ease-lab/vSwarm-proto/proto/hotel_reserv/geo"
profile "github.com/ease-lab/vSwarm-proto/proto/hotel_reserv/profile"
rate "github.com/ease-lab/vSwarm-proto/proto/hotel_reserv/rate"
recommendation "github.com/ease-lab/vSwarm-proto/proto/hotel_reserv/recommendation"
reservation "github.com/ease-lab/vSwarm-proto/proto/hotel_reserv/reservation"
search "github.com/ease-lab/vSwarm-proto/proto/hotel_reserv/search"
user "github.com/ease-lab/vSwarm-proto/proto/hotel_reserv/user"
geo "github.com/vhive-serverless/vSwarm-proto/proto/hotel_reserv/geo"
profile "github.com/vhive-serverless/vSwarm-proto/proto/hotel_reserv/profile"
rate "github.com/vhive-serverless/vSwarm-proto/proto/hotel_reserv/rate"
recommendation "github.com/vhive-serverless/vSwarm-proto/proto/hotel_reserv/recommendation"
reservation "github.com/vhive-serverless/vSwarm-proto/proto/hotel_reserv/reservation"
search "github.com/vhive-serverless/vSwarm-proto/proto/hotel_reserv/search"
user "github.com/vhive-serverless/vSwarm-proto/proto/hotel_reserv/user"

log "github.com/sirupsen/logrus"
)
Expand Down
9 changes: 5 additions & 4 deletions proto/aes/aes.pb.go

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

2 changes: 1 addition & 1 deletion proto/aes/aes.proto
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

syntax = "proto3";

option go_package = "github.com/ease-lab/vSwarm-proto/proto/aes";
option go_package = "github.com/vhive-serverless/vSwarm-proto/proto/aes";

package aes;

Expand Down
4 changes: 2 additions & 2 deletions proto/aes/aes_pb2.py

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

9 changes: 5 additions & 4 deletions proto/auth/auth.pb.go

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

2 changes: 1 addition & 1 deletion proto/auth/auth.proto
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

syntax = "proto3";

option go_package = "github.com/ease-lab/vSwarm-proto/proto/auth";
option go_package = "github.com/vhive-serverless/vSwarm-proto/proto/auth";

package auth;

Expand Down
4 changes: 2 additions & 2 deletions proto/auth/auth_pb2.py

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

9 changes: 5 additions & 4 deletions proto/fibonacci/fibonacci.pb.go

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

2 changes: 1 addition & 1 deletion proto/fibonacci/fibonacci.proto
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

syntax = "proto3";

option go_package = "github.com/ease-lab/vSwarm-proto/proto/fibonacci";
option go_package = "github.com/vhive-serverless/vSwarm-proto/proto/fibonacci";

package fibonacci;

Expand Down
4 changes: 2 additions & 2 deletions proto/fibonacci/fibonacci_pb2.py

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

11 changes: 6 additions & 5 deletions proto/helloworld/helloworld.pb.go

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

2 changes: 1 addition & 1 deletion proto/helloworld/helloworld.proto
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
syntax = "proto3";

option go_package = "github.com/ease-lab/vSwarm-proto/proto/helloworld";
option go_package = "github.com/vhive-serverless/vSwarm-proto/proto/helloworld";

package helloworld;

Expand Down
4 changes: 2 additions & 2 deletions proto/helloworld/helloworld_pb2.py

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

10 changes: 5 additions & 5 deletions proto/hipstershop/demo.pb.go

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

2 changes: 1 addition & 1 deletion proto/hipstershop/demo.proto
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ syntax = "proto3";

package hipstershop;

option go_package = "github.com/ease-lab/vSwarm-proto/proto/hipstershop";
option go_package = "github.com/vhive-serverless/vSwarm-proto/proto/hipstershop";

// -----------------Cart service-----------------

Expand Down
Loading

0 comments on commit f4db7b5

Please sign in to comment.