mirror of
https://github.com/BotChain-Robots/dev-tools.git
synced 2026-07-08 15:07:22 +02:00
16 lines
256 B
C++
16 lines
256 B
C++
|
|
#include <iostream>
|
|
#include "DeviceListApp.h"
|
|
|
|
int main() {
|
|
try {
|
|
DeviceListApp app;
|
|
app.run();
|
|
} catch (const std::exception& e) {
|
|
std::cerr << "Error: " << e.what() << std::endl;
|
|
return 1;
|
|
}
|
|
|
|
return 0;
|
|
}
|