for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
from abc import ABC
class RoutineWrapperGeneratorWorker(ABC):
"""
Interface for classes that implement the actual execution of the routine wrapper generator command.
# ------------------------------------------------------------------------------------------------------------------
def execute(self) -> int:
Does the actual execution of the routine wrapper generator command for the backend. Returns 0 on success.
Otherwise, returns nonzero.
pass
# ----------------------------------------------------------------------------------------------------------------------