mirror of
https://github.com/openswarm-ai/openswarm.git
synced 2026-09-05 09:17:42 +02:00
[eric] runner: per-app VM image boots a published bundle from storage and serves backend + frontend from one process (ENG-293)
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
"""No-op shim: generated workspaces import the desktop's injected debugger; hosted runs have no
|
||||
debugger to talk to, so every hook is a silent pass-through (call-style and decorator-style)."""
|
||||
|
||||
|
||||
def debug(*args, **kwargs):
|
||||
if len(args) == 1 and callable(args[0]) and not kwargs:
|
||||
return args[0]
|
||||
return None
|
||||
|
||||
|
||||
def log(*args, **kwargs):
|
||||
return None
|
||||
|
||||
|
||||
def snapshot(*args, **kwargs):
|
||||
return None
|
||||
Reference in New Issue
Block a user