Files
amq-adapter-python/cleverswarm/main.py
Stanislav Hejny 2f6dbd2ad8
Unit test coverage / pytest (pull_request) Failing after 1m9s
Unit test coverage / pytest (push) Failing after 1m11s
#23 refactor to use shared code between services
2025-05-11 15:06:39 +01:00

9 lines
292 B
Python

from clever_swarm_adapter import CleverSwarmAmqpAdapter
from amqp.config.amq_configuration import AMQConfiguration
if __name__ == "__main__":
adapter = CleverSwarmAmqpAdapter(AMQConfiguration("./application.properties.local"))
print("Press ^C to exit...")
adapter.thread.join()