-
Notifications
You must be signed in to change notification settings - Fork 3.3k
/
Copy pathmain.go
73 lines (70 loc) · 3.5 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
package main
import (
"fmt"
// "github.com/ashishps1/awesome-low-level-design/solutions/golang/movieticketbookingsystem"
// "github.com/ashishps1/awesome-low-level-design/solutions/golang/airlinemanagementsystem"
// "github.com/ashishps1/awesome-low-level-design/solutions/golang/linkedin"
// "github.com/ashishps1/awesome-low-level-design/solutions/golang/librarymanagementsystem"
// "github.com/ashishps1/awesome-low-level-design/solutions/golang/fooddeliveryservice"
// "github.com/ashishps1/awesome-low-level-design/solutions/golang/elevatorsystem"
// "github.com/ashishps1/awesome-low-level-design/solutions/golang/digitalwallet"
// "github.com/ashishps1/awesome-low-level-design/solutions/golang/courseregistrationsystem"
// "github.com/ashishps1/awesome-low-level-design/solutions/golang/coffeevendingmachine"
// "github.com/ashishps1/awesome-low-level-design/solutions/golang/chessgame"
// "github.com/ashishps1/awesome-low-level-design/solutions/golang/carrentalsystem"
// "github.com/ashishps1/awesome-low-level-design/solutions/golang/atm"
// "github.com/ashishps1/awesome-low-level-design/solutions/golang/lrucache"
// "github.com/ashishps1/awesome-low-level-design/solutions/golang/loggingframework"
// "github.com/ashishps1/awesome-low-level-design/solutions/golang/music_streaming_service"
// "github.com/ashishps1/awesome-low-level-design/solutions/golang/onlineauctionsystem"
// "github.com/ashishps1/awesome-low-level-design/solutions/golang/onlineshopping"
// "github.com/ashishps1/awesome-low-level-design/solutions/golang/onlinestockbrokeragesystem"
// "github.com/ashishps1/awesome-low-level-design/solutions/golang/parkinglot"
// "github.com/ashishps1/awesome-low-level-design/solutions/golang/pubsubsystem"
// "github.com/ashishps1/awesome-low-level-design/solutions/golang/restaurantmanagementsystem"
// "github.com/ashishps1/awesome-low-level-design/solutions/golang/ridesharingservice"
// "github.com/ashishps1/awesome-low-level-design/solutions/golang/snake_and_ladder_game"
// "github.com/ashishps1/awesome-low-level-design/solutions/golang/social_networking_service"
// "github.com/ashishps1/awesome-low-level-design/solutions/golang/splitwise"
// "github.com/ashishps1/awesome-low-level-design/solutions/golang/stackoverflow"
// "github.com/ashishps1/awesome-low-level-design/solutions/golang/taskmanagementsystem"
// "github.com/ashishps1/awesome-low-level-design/solutions/golang/tictactoe"
// "github.com/ashishps1/awesome-low-level-design/solutions/golang/trafficsignalsystem"
// "github.com/ashishps1/awesome-low-level-design/solutions/golang/vending_machine"
)
func main() {
fmt.Println("Starting Projects")
// airlinemanagementsystem.Run()
// atm.Run()
// carrentalsystem.Run()
// chessgame.Run()
// coffeevendingmachine.Run()
// concertbookingsystem.Run()
// courseregistrationsystem.Run()
// cricinfo.Run()
// digitalwallet.Run()
// elevatorsystem.Run()
// fooddeliveryservice.Run()
// hotelmanagement.Run()
// librarymanagementsystem.Run()
// linkedin.Run()
// loggingframework.Run()
// lrucache.Run()
// movieticketbookingsystem.Run()
// musicstreamingservice.Run()
// onlineauctionsystem.Run()
// onlineshopping.Run()
// onlinestockbrokeragesystem.Run()
// parkinglot.Run()
// pubsubsystem.Run()
// restaurantmanagementsystem.Run()
// ridesharingservice.Run()
// snakeandladdergame.Run()
// socialnetworkingservice.Run()
// splitwise.Run()
// stackoverflow.Run()
// taskmanagementsystem.Run()
// tictactoe.Run()
// trafficsignalsystem.Run()
// vending_machine.Run()
}