Skip to content

Dash-Abhishek/GRPC-playground

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GRPC plaground

Pre-requisites:

1. go 1.23.0
2. protoc 3.21.12

Run tests:

go test ./...

Build & run server:

go build -o booking-server && ./booking-server

Build & run client:

go build -o booking-client  ./client &&./booking-client

API:

rpc Create (BookingRequest) returns (Receipt) {}
rpc GetReceipt (UserEmail) returns (Receipt) {}
rpc UpdateSeat (UpdateSeatRequest) returns (Receipt) {}
rpc Cancel (UserEmail) returns (Empty) {}
rpc GetSeatAllocations (Section) return (AllocationList) {}

About

No description or website provided.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages