Project setup

This commit is contained in:
2026-04-11 17:29:03 -04:00
commit 9cb8c1854f
34 changed files with 609 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
#include "shared/logger.h"
int main() {
OatmealUtils::initLogging();
OatmealUtils::createLogger("window", nullptr);
OatmealUtils::get("window")->info("Test");
return 0;
}