A tickets booking application which performs booking and generation of tickets concurrently using go routines.
- Used go routines for implementing a ticket booking application for booking and sending tickets to the users.
- The main application performa the booking of the tickets for the users.
- Threads are used for sending the tickets to multiple users simultaneously without stopping the flow of execution for the booking function.
- Once the tickets are sent the threads are removed automatically.
- The program end when all the tickets have been sent.
Execute using : go run .