2026-06-04 11:16:13 -05:00

12 lines
202 B
C++

// Watchful Eye main file
#include <iostream>
#include "version.h"
int main(int argc, char* argv[]) {
std::cout << "Watchful Eye " APPVERSION "\n";
std::cin.get();
return EXIT_SUCCESS;
}