8 lines
388 B
Python
8 lines
388 B
Python
|
|
from uas.comm.adapters.dds_adapter import DDSAdapterComm
|
||
|
|
from uas.comm.adapters.kafka_adapter import KafkaAdapterComm
|
||
|
|
from uas.comm.adapters.redis_adapter import RedisAdapterComm
|
||
|
|
from uas.comm.factory import CommAdapterFactory
|
||
|
|
|
||
|
|
CommAdapterFactory.register("redis", RedisAdapterComm)
|
||
|
|
CommAdapterFactory.register("kafka", KafkaAdapterComm)
|
||
|
|
CommAdapterFactory.register("dds", DDSAdapterComm)
|