mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 22:06:30 +00:00
14 lines
215 B
Python
14 lines
215 B
Python
from main import CommandProcessor
|
|
|
|
|
|
def start():
|
|
processor = CommandProcessor()
|
|
try:
|
|
processor.start()
|
|
except KeyboardInterrupt:
|
|
processor.stop()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
start()
|