15 |
15 |
16 def initService(): |
16 def initService(): |
17 """ |
17 """ |
18 Initialize the service and return the entry point. |
18 Initialize the service and return the entry point. |
19 |
19 |
20 @return the entry point for the background client (function) |
20 @return the entry point for the background client |
|
21 @rtype function |
21 """ |
22 """ |
22 return vultureCheck |
23 return vultureCheck |
23 |
24 |
24 |
25 |
25 def initBatchService(): |
26 def initBatchService(): |
26 """ |
27 """ |
27 Initialize the batch service and return the entry point. |
28 Initialize the batch service and return the entry point. |
28 |
29 |
29 @return the entry point for the background client (function) |
30 @return the entry point for the background client |
|
31 @rtype function |
30 """ |
32 """ |
31 return batchVultureCheck |
33 return batchVultureCheck |
32 |
34 |
33 |
35 |
34 def vultureCheck(file, text=""): |
36 def vultureCheck(file, text=""): |