runtime/env_manager/config/environments/simulator.lua
2023-02-08 15:06:48 +00:00

14 lines
348 B
Lua

-- environment configuration
SIMULATOR = {
namespace = "simulator_env",
components = {
talker_node = {
lib = "libpub_component.so",
class = "pub_component::Publisher",
},
service_node = {
lib = "libsrv_component.so",
class = "srv_component::Service"
}
}
}