-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathknown_routes.go
57 lines (56 loc) · 1.62 KB
/
known_routes.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
package switch_benchmark
var knownRoutes = []string{
"/rpc/ExampleService/Ping",
"/rpc/ExampleService/Status",
"/rpc/ExampleService/Version",
"/rpc/ExampleService/GetUser",
"/rpc/ExampleService/FindUser",
"/rpc/ExampleService/ListUsers",
"/rpc/ExampleService/CreateUser",
"/rpc/ExampleService/UpdateUser",
"/rpc/ExampleService/DeleteUser",
"/rpc/AnotherService/Ping",
"/rpc/AnotherService/Status",
"/rpc/AnotherService/Version",
"/rpc/AnotherService/GetUser",
"/rpc/AnotherService/FindUser",
"/rpc/AnotherService/ListUsers",
"/rpc/AnotherService/CreateUser",
"/rpc/AnotherService/UpdateUser",
"/rpc/AnotherService/DeleteUser",
"/rpc/OtherService/Ping",
"/rpc/OtherService/Status",
"/rpc/OtherService/Version",
"/rpc/OtherService/GetUser",
"/rpc/OtherService/FindUser",
"/rpc/OtherService/ListUsers",
"/rpc/OtherService/CreateUser",
"/rpc/OtherService/UpdateUser",
"/rpc/OtherService/DeleteUser",
"/rpc/GetterService/GetA",
"/rpc/GetterService/GetB",
"/rpc/GetterService/GetC",
"/rpc/GetterService/GetD",
"/rpc/GetterService/GetE",
"/rpc/GetterService/GetF",
"/rpc/GetterService/GetG",
"/rpc/GetterService/GetH",
"/rpc/GetterService/GetI",
"/rpc/GetterService/GetJ",
"/rpc/GetterService/GetK",
"/rpc/GetterService/GetL",
"/rpc/GetterService/GetM",
"/rpc/GetterService/GetN",
"/rpc/GetterService/GetO",
"/rpc/GetterService/GetP",
"/rpc/GetterService/GetQ",
"/rpc/GetterService/GetR",
"/rpc/GetterService/GetS",
"/rpc/GetterService/GetT",
"/rpc/GetterService/GetU",
"/rpc/GetterService/GetV",
"/rpc/GetterService/GetW",
"/rpc/GetterService/GetX",
"/rpc/GetterService/GetY",
"/rpc/GetterService/GetZ",
}