(self, c_object)
| 128 | await self._load(plugins) |
| 129 | |
| 130 | async def store(self, c_object): |
| 131 | try: |
| 132 | return c_object.store(self.ram) |
| 133 | except Exception as e: |
| 134 | self.log.error('[!] can only store first-class objects: %s' % e) |
| 135 | |
| 136 | async def locate(self, object_name, match=None): |
| 137 | try: |
no outgoing calls
no test coverage detected