Skip to content
Snippets Groups Projects

V.0.1.0 Codename Threadbare

Closed Ghost User requested to merge v.0.1.0-codename-threadbare into master
2 files
+ 13
3
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -31,8 +31,8 @@ var CommandList = []command{
}
//Connect creates a new connection to the gRPC server
func Connect() (*grpc.ClientConn, error) {
address := "141.100.70.170:55066"
func Connect(address string) (*grpc.ClientConn, error) {
//address := "141.100.70.170:55066"
return grpc.Dial(address, grpc.WithInsecure(), grpc.WithTimeout(5*time.Second), grpc.WithBlock())
}
Loading