This commit is contained in:
radi0dev 2026-01-30 16:48:11 +03:00
commit bd58ea66de
10 changed files with 395 additions and 0 deletions

10
inc/tplr.h Normal file
View file

@ -0,0 +1,10 @@
#ifndef TPLR_H
#define TPLR_H
#include <string>
#include <map>
std::string renderTemplate(const std::string& templateContent, const std::map<std::string, std::string>& context);
#endif // TPLR_H