Cleanup for release

This commit is contained in:
2026-03-31 23:09:11 -04:00
parent 5bcd57a5c4
commit 78bc3b4b33
34 changed files with 2263 additions and 0 deletions

15
src/main.cpp Normal file
View File

@@ -0,0 +1,15 @@
#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;
}