11 lines
194 B
Python
11 lines
194 B
Python
from .core.test_orchestrator import run_orchestrator
|
|
|
|
|
|
def main():
|
|
"""Entrypoint per eseguire il mini-orchestrator di test."""
|
|
run_orchestrator()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|