7 Module implementing an enum for the various service categories. |
7 Module implementing an enum for the various service categories. |
8 """ |
8 """ |
9 |
9 |
10 import enum |
10 import enum |
11 |
11 |
|
12 |
12 class EricRequestCategory(enum.IntEnum): |
13 class EricRequestCategory(enum.IntEnum): |
13 """ |
14 """ |
14 Class defining the service categories of the eric remote server. |
15 Class defining the service categories of the eric remote server. |
15 """ |
16 """ |
|
17 |
16 FileSystem = 0 |
18 FileSystem = 0 |
17 Project = 1 |
19 Project = 1 |
18 Debugger = 2 |
20 Debugger = 2 |
19 |
21 |
20 Echo = 253 |
22 Echo = 253 |