ready to start writing the actual code

This commit is contained in:
2025-10-23 20:49:21 -05:00
parent bac6febd16
commit a4b23fc57c
8 changed files with 19 additions and 9 deletions

View File

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