got some libs in

This commit is contained in:
2025-10-23 20:21:14 -05:00
parent 0d01e09ded
commit 37e7685f77
79 changed files with 42 additions and 22 deletions

View File

@@ -1,7 +1,11 @@
#include "spdlog/spdlog.h"
#include <iostream>
// This is the *daemon*
int main() {
std::cout << "Hello from MyProject (C++23)\n";
std::cout << "Hello from the email tracker's daemon (C++23)\n";
spdlog::info("Logger is functional.");
return 0;
}

View File

@@ -1,7 +1,11 @@
#include "spdlog/spdlog.h"
#include <iostream>
// This is the client
int main() {
std::cout << "Hello from MyProject (C++23)\n";
std::cout << "Hello from the email tracker's client.(C++23)\n";
spdlog::info("Logger is functional");
return 0;
}