MCPcopy Create free account
hub / github.com/intelowlproject/IntelOwl / queue

Method queue

api_app/models.py:220–230  ·  view source on GitHub ↗

Get the queue associated with the module. Returns: str: The queue.

(self)

Source from the content-addressed store, hash-verified

218
219 @property
220 def queue(self) -> str:
221 """
222 Get the queue associated with the module.
223
224 Returns:
225 str: The queue.
226 """
227 try:
228 return self.configs.order_by("?").first().queue
229 except AttributeError:
230 return None
231
232 def _clean_python_module(self):
233 """

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected