http://git.simp.i2p/simp/PyLink/src/branch/main/coremods/service_support.py
Burst all our registered services. for name , sbot in world . services . items ( ) : spawn_service ( irc , source , command , { ' name ' : name } ) utils . add_hook ( handle_endburst , ' ENDBURST ' , priority = 500 ) def handle_kill ( irc , source , command , args ) : """ Handle KILLs to PyLink service bots, respawning them as needed. """ target = args [ ' target ' ] if irc . pseudoclient and target == irc . pseudoclient . uid : irc . pseudoclient = None userdata = args . get ( ' userdata ' ) sbot = irc ....