Files
annotations/Azaion.Inference/start.py
T
2025-02-13 18:13:15 +02:00

14 lines
215 B
Python

from main import CommandProcessor
def start():
processor = CommandProcessor()
try:
processor.start()
except KeyboardInterrupt:
processor.stop()
if __name__ == '__main__':
start()