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