14 lines
348 B
Lua
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"
|
|
}
|
|
}
|
|
}
|