| 12 | from pycgraph import GNode, CStatus |
| 13 | |
| 14 | class MyNode1(GNode): |
| 15 | def run(self): |
| 16 | print("[{0}] {1}, enter MyNode1 run function. Sleep for 1 second ... ".format(datetime.now(), self.getName())) |
| 17 | time.sleep(1) |
| 18 | return CStatus() |
no outgoing calls
no test coverage detected